Rectangular mesh using coordinates

19 vues (au cours des 30 derniers jours)
Hrishikesh Das
Hrishikesh Das le 25 Août 2020
Réponse apportée : KSSV le 25 Août 2020
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.')

Réponse acceptée

KSSV
KSSV le 25 Août 2020
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.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by