The examples I see for vector fields go somewhat like this...
[x,y] = meshgrid(-10:1:10,-10:1:10);
M = x;
N = -y;
quiver(x,y,M,N)
I don't want to use a function to fill in the values, but want to load point by point.
For example, if I want to manually load the first element, in this case the element at (-10,-10) with the values (3.2,-1.9), how would I do it?
[x,y] = meshgrid(-10:1:10,-10:1:10);
M = x;
N = -y;
quiver(x,y,M,N)
I don't want to use a function to fill in the values, but want to load point by point.
For example, if I want to manually load the first element, in this case the element at (-10,-10) with the values (3.2,-1.9), how would I do it?