How can i create these three images in one figure?
3 次查看(过去 30 天)
显示 更早的评论
How can i create these three images in one figure ?
2 个评论
Scott MacKenzie
2021-4-27
Use subplot (or tiledlayout since R2019b) to combine multiple plots into a single figure.
回答(1 个)
Chad Greene
2021-4-27
If you're question is about how to make subplots, here's how.
figure
subplot(3,1,1)
plot(sind(1:1e4))
subplot(3,1,2)
plot(rand(1000,1))
subplot(3,1,3)
plot(sind(1:1e4).*cosd(3*(1:1e4)))
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Subplots 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!