Multiple plot 'slides' on the same graph

7 ビュー (過去 30 日間)
Ebram Youssef
Ebram Youssef 2022 年 6 月 7 日
回答済み: DGM 2022 年 6 月 7 日
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 Center および File ExchangeCreating, Deleting, and Querying Graphics Objects についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by