필터 지우기
필터 지우기

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 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