Filter löschen
Filter löschen

how to select node of mesh grid one by one

2 Ansichten (letzte 30 Tage)
MANOJ KUMAR
MANOJ KUMAR am 13 Sep. 2020
Beantwortet: KSSV am 13 Sep. 2020
X =-5:1:5 ;
Y =-5:1:5 ;
[Xc,Yc]=meshgrid(X,Y);
i have creatred this mesh. now i want to select each node one by one like node11,node12,node13...........

Antworten (1)

KSSV
KSSV am 13 Sep. 2020
X =-5:1:5 ;
Y =-5:1:5 ;
[Xc,Yc]=meshgrid(X,Y);
coor = [X(:) Y(:)] ;
Select your required node from coor.

Community Treasure Hunt

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

Start Hunting!

Translated by