How to create a customized meshgrid?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ashfaq Ahmed
el 31 de Oct. de 2021
Editada: Ashfaq Ahmed
el 31 de Oct. de 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?
0 comentarios
Respuesta aceptada
Chunru
el 31 de Oct. de 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
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Surface and Mesh Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!