how to specify length on subplot
2 ビュー (過去 30 日間)
古いコメントを表示
Hi guys
so i want to subplot a vector and matrix in the same figure using this code
subplot(2,1,1)
plot(data);
subplot(2,1,2)
contour(wt);
the plot is ike this
the variable data (vector) length is 1600 and the variable wt(matrix) length is 1000
i want the subplot to be like this (the two variable have a same length,in this case i want the length to be 1000).
how to do that?
thank youu very much
0 件のコメント
採用された回答
infinity
2019 年 6 月 25 日
Hello,
You could set xlim of the first figure.
More details, you should see this
https://it.mathworks.com/help/matlab/ref/xlim.html
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Subplots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!