Using three 60000 x 1 double matrices, how to make the 3D graph efficiently in the form of 2D
Mostra commenti meno recenti
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)
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Surface and Mesh Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!