Rectangular mesh using coordinates

12 次查看(过去 30 天)
I am trying to draw a mesh using the following co ordinates. Below is my code. Can someone tell me how to connect the point and create the mesh. Please help.
B =5;
x1 = linspace(0,5/10,10);
y1 = linspace((B-B/12),B,10);
[xxx yyy] = meshgrid(x1,y1);
coordinates = [xxx(:) yyy(:)];
plot(xxx,yyy,'b.')

采纳的回答

KSSV
KSSV 2020-8-25
B =5;
x1 = linspace(0,5/10,10);
y1 = linspace((B-B/12),B,10);
[X,Y] = meshgrid(x1,y1);
plot(X,Y,'r',X',Y','r')
Also read about mesh.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by