Code: Select all
SobelH(0)=-1:SobelH(1)=-2:SobelH(2)=-1
SobelH(3)=0:SobelH(4)=0,SobelH(5)=0
SobelH(6)=1:SobelH(7)=2:SobelH(8)=1
I'd like something like:
Code: Select all
SobelH(0)=-1,-2,-1,0,0,0,1,2,1
With multidimensional arrays it could go to the next row if the ending has been reached?
It would also be useful for loading string arrays.