Hi I am trying to draw an image.
I have three matrices:
Matrix A: X coordinates
Matrix B: Y coordinates
Matrix C: Image gray scale
For example:
A = [1, 1; B = [1, 2; C = [1, 2;
2, 2] 1, 2] 3, 4]
I will plot a point with value of C(1) at X(1), Y(1). Value 1 is drawn at (1,1) Value 2 is drawn at (1,2) Value 3 is drawn at (2,1) Value 4 is drawn at (2,2)
Is there a function that I can use to plot this, or do I have to implement this? Any suggestion how to implement this would be appreciated it. Thank you.