MATLAB: Find position of the matrix

image processingmatrix manipulation

x=0.0344 0.0018 0.0519 0.0181 0.0285 0.0393 0.0344 0.0344
find the position of each value and the further process taken the value one by one

Best Answer

x(1), x(2) ... x(end),
Gives you each every value in the array.