I can't plot this 3D matrix despite looking at other examples

2 次查看(过去 30 天)
I have attached the data I have here.
Despite looking at other examples, I can't plot the 4x4x4 3D matrix peak_psp. It contains values for every combination of each value contained in the other three 1x4 vectors. The 3D matrix has the following dimensions:
1 ScaleTiming as 1st dimension
2 GexScale as 2nd dimension
3 GinScale as 3rd dimension
I have tried using surf and contour 3, but without any luck.
Thanks!

回答(1 个)

J Chen
J Chen 2021-4-14
The matrix has 3 independent variables. 3D plots using surf can only have 2 independent variable. You need to general 4 3D figures. Try this
[X,Y] = meshgrid(GexScale,GinScale);
s1 = surf(GexScale,GinScale,peak_psp(:,:,1));
s2 = surf(GexScale,GinScale,peak_psp(:,:,2));
...
You can animate the figures if you want.

类别

Help CenterFile Exchange 中查找有关 Contour Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by