How to create a customized meshgrid?

조회 수: 2 (최근 30일)
Ashfaq Ahmed
Ashfaq Ahmed 2021년 10월 31일
편집: Ashfaq Ahmed 2021년 10월 31일
Hi all,
Can anyone kindly tell me how can I create a "71x9866 double" size meshgrid where my x axis will have the range of 340 to 348 and my y axis will have the range of 66 to 74?

채택된 답변

Chunru
Chunru 2021년 10월 31일
%71x9866 double" size meshgrid where my x axis will have the rang of 340 to 348 and my y axis will have the range of 66 to 74?
[xx, yy] = meshgrid(linspace(340, 348, 9866), linspace(66, 74, 71));
whos
Name Size Bytes Class Attributes xx 71x9866 5603888 double yy 71x9866 5603888 double

추가 답변 (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