Azzera filtri
Azzera filtri

How to create a customized meshgrid?

2 visualizzazioni (ultimi 30 giorni)
Ashfaq Ahmed
Ashfaq Ahmed il 31 Ott 2021
Modificato: Ashfaq Ahmed il 31 Ott 2021
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?

Risposta accettata

Chunru
Chunru il 31 Ott 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

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by