remove data from fig file after plotting
11 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I can explain my question in a few ways :)
- I'd like to fix all three of the curves x axes by 17.38-33.
- I'd like to make the green curve to have same x axis limit with the blue and orange one.
- I'd like to remove extra parts of the green curve.
If possible, without coding, I wanna do this from figure properties.
Best,
1 件のコメント
Dyuman Joshi
2024 年 2 月 8 日
"... I wanna do this from figure properties."
What's stopping you? Go to figure properties and adjust accordingly.
回答 (2 件)
VBBV
2024 年 2 月 8 日
編集済み: VBBV
2024 年 2 月 8 日
|If you want to do it using figure properties alone, this is one way
h = openfig('eps_mu_mu_34.fig') % figure properties
ax = gca; % get the figure axes properties
ax.XLim = [17.38 33] % set the x-limit you want
2 件のコメント
VBBV
2024 年 2 月 8 日
編集済み: VBBV
2024 年 2 月 8 日
Otherwise, after plotting the figure, go to Edit menu in figure window and select the Figure Properties, highlight the axes border to access the Axes tab. Then set x-axis limits to [17.38 33] by entering those numbers in the fields. This way you dont require additional coding except a well functioning Mouse
DGM
2024 年 2 月 8 日
That's exactly what xlim() does. It sets the XLim property of the specified axes object.
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!