フィルターのクリア

how to select node of mesh grid one by one

2 ビュー (過去 30 日間)
MANOJ KUMAR
MANOJ KUMAR 2020 年 9 月 13 日
回答済み: KSSV 2020 年 9 月 13 日
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...........

回答 (1 件)

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

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by