'stacking' 2D graphs on top of each other.
5 ビュー (過去 30 日間)
古いコメントを表示
CLARK KENDRICK GO
2018 年 3 月 14 日
回答済み: Unai San Miguel
2018 年 3 月 14 日
I have multiple 2D graphs (but of different lengths/sizes). I want to stack them together to form a 3D image (not necessarily a surface). Stacking them on top of each other is fine without the surface. Please help me make this kind of graph.
0 件のコメント
採用された回答
Unai San Miguel
2018 年 3 月 14 日
There are plot3, contour3 versions of plot, contour for which you would have to add a third coordinate for each 2D plot, if that is what you are trying to do. For instance
plot(x1, y1)
plot(x2, y2)
plot3(x1, y1, repmat(z1, size(x1)))
hold on
plot3(x2, y2, repmat(z2, size(x2)))
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Surface and Mesh Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!