Effacer les filtres
Effacer les filtres

How to create a customized meshgrid?

2 vues (au cours des 30 derniers jours)
Ashfaq Ahmed
Ashfaq Ahmed le 31 Oct 2021
Modifié(e) : Ashfaq Ahmed le 31 Oct 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?

Réponse acceptée

Chunru
Chunru le 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

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by