How to create a customized meshgrid?

2 次查看(过去 30 天)
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