I want to plot the plane perpendicular to a vector, and going through a point with Matlab.
My vector has coordinates v1 = [2,i] and my point has coordinates com_m1 = [1,i].
I have tried both:
xx=(-15:-6:0.25);
yy=(-10:-2:0.25);
for i = 1:length(xx)
for j = 1:length(yy)
zz_m1(j,i)=(v1(2,2)*(xx(i) - com1(1,1)) + v1(2,2)*(yy(j)-com1(1,2)))/v1(2,3) + com1(1,3);
end
end
surf(xx,yy,zz_m1, 'FaceColor','red','EdgeColor','none') % Plotting the surface
and
[xx, yy]=meshgrid(-15:-6:0.25,-10:-1:0.25);
zz_m1=(v1(2,2)*(xx - com1(1,1)) + v1(2,2)*(yy-com1(1,2)))/v1(2,3) + com1(1,3);
surf(xx,yy,zz_m1, 'FaceColor','red','EdgeColor','none')
But both didn't work. Can anyone help me understand what I am doing wrong? Thanks!
v1(2, 2), while you definedv1to bev1 = [2, i], which is only 1-by-2. Same comment goes forcom1. – Eitan T Aug 29 '12 at 12:17