Multiple plot 'slides' on the same graph

2 次查看(过去 30 天)
Is there a way to combine multiple plots on the same graph in this way in MATLAB? I can generate each of these plots seperately, but I would like to combine them in one picture in the same way shown in the attached picture.

采纳的回答

DGM
DGM 2022-6-7
You can use plot3(), but you'll have to configure your data according to what plot3() expects.
% some placeholder data
% g is a 2D array with individual series arranged as columns
x = -20:20;
sigma = linspace(3,5,10);
[yy xx] = meshgrid(sigma,x);
g = exp(-(xx./(1.414*yy)).^2);
plot3(xx,yy,g)
grid on
view(19,16)
Alternatively, you can just plot each series in a call to plot3() in a loop or something.
If you actually want an oblique projection like that, good luck. Oblique projections aren't supported. There is obliqueview() on the File Exchange, but parts of what it relies upon simply don't work anymore and would need to be rewritten.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by