Using three 60000 x 1 double matrices, how to make the 3D graph efficiently in the form of 2D
Afficher commentaires plus anciens
Hello, Simply, I need to make use 3 matrices which are 60000 x 1 size each. When I use the code below, I have a serious performance problem and I cannot complete the meshgrid because of the large matrices. How can I implement what I need to do? Thanks
clc
clear all
a=rand(60000,1);
b=rand(60000,1);
c=rand(60000,1);
[X,Y]=meshgrid(a,b);
Z=griddata(a,b,c,X,Y,'cubic');
mesh(X,Y,Z)
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Surface and Mesh Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!