Curve Fitting Toolbox コマ​ンドラインによる座標​軸の範囲と目盛り設定​について

조회 수: 2 (최근 30일)
文親
文親 2023년 4월 18일
댓글: 文親 2023년 4월 19일
Curve Fitting Toolboxで作成したグラフについて、左下が原点0となるよう座標軸の目盛りの範囲を変更したいのですが、コマンドラインの場所が分からないため変更の指示が打ち込めません。どうすればよいでしょうか

채택된 답변

Hiro Yoshino
Hiro Yoshino 2023년 4월 19일
Curve fitting app >> エクスポート >> Figure にエクスポート
後だと思って以下を見てみてください。
x = -1:0.1:3;
y = cos(x);
plot(x,y);
グラフィックスオブジェクトを探して、プログラミング的に各ハンドルを操作できます
Axes オブジェクトを探して:
ax = findall(groot,'Type','Axes')
ax =
Axes with properties: XLim: [-1 3] YLim: [-1 1] XScale: 'linear' YScale: 'linear' GridLineStyle: '-' Position: [0.1300 0.1100 0.7750 0.8150] Units: 'normalized' Show all properties
Xlim プロパティを変更
ax.XLim(1) = 0
ax =
Axes with properties: XLim: [0 3] YLim: [-1 1] XScale: 'linear' YScale: 'linear' GridLineStyle: '-' Position: [0.1300 0.1100 0.7750 0.8150] Units: 'normalized' Show all properties
  댓글 수: 1
文親
文親 2023년 4월 19일
変更できました。詳細にご回答いただきありがとうございます。

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 近似の後処理에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!