hi
i have this graph
xv = [1,2,3,4.8,8,10,10,5]; yv = [0,4,7.5,7.9,9,4,0,0]; patch(xv,yv,'b'); ylim([-5, 15]); xlim([0, 15]);
i want to convert this to 3d with z=2 for all point of x-y coordinate
thank in advance regards
No products are associated with this question.
zv(1:length(xv))=2; patch(xv,yv,zv,'b');
hi matt
the graph still 2d !!
is their any change must i do in properties
1 Comment
Direct link to this comment:
http://www.mathworks.com/matlabcentral/answers/59297#comment_123649
What do you want it to look like? Like just a flat slab?