Azzera filtri
Azzera filtri

Rectangular mesh using coordinates

12 visualizzazioni (ultimi 30 giorni)
Hrishikesh Das
Hrishikesh Das il 25 Ago 2020
Risposto: KSSV il 25 Ago 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.')

Risposta accettata

KSSV
KSSV il 25 Ago 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.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by