필터 지우기
필터 지우기

Rectangular mesh using coordinates

조회 수: 12 (최근 30일)
Hrishikesh Das
Hrishikesh Das 2020년 8월 25일
답변: KSSV 2020년 8월 25일
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.')

채택된 답변

KSSV
KSSV 2020년 8월 25일
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.

추가 답변 (0개)

카테고리

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