Want to change the range of a single axis of a plotyy figure
古いコメントを表示
Hi
I want my x-axis to be tight to the data on a plotyy graph. I can't seem to do it without messing up the axes.
My data ranges from 1e-5 to 1e3 and it's a semilogx plotting function. Is there a way I can use axis([...]) to specify all three ranges (x, y1, y2) at once?
Thanks for any help Mike
採用された回答
その他の回答 (1 件)
Muruganandham Subramanian
2012 年 12 月 11 日
編集済み: Muruganandham Subramanian
2012 年 12 月 11 日
figure;
ylim([1e-5 1e3]);
or
goto Edit -> Axes Properties -> then select X axis and change range as your need
3 件のコメント
Michael
2012 年 12 月 11 日
Muruganandham Subramanian
2012 年 12 月 11 日
編集済み: Muruganandham Subramanian
2012 年 12 月 11 日
If you need to change x axis range is b/w 1e-5 to 1e3, you can use
xlim([1e-5 1e3])
or if it's not, can you explain precisely?
Michael
2012 年 12 月 11 日
カテゴリ
ヘルプ センター および File Exchange で Two y-axis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!