How to create a customized meshgrid?

3 views (last 30 days)
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?

Accepted Answer

Chunru
Chunru on 31 Oct 2021
%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

More Answers (0)

Community Treasure Hunt

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

Start Hunting!