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

Curve Fitting Toolboxで作成したグラフについて、左下が原点0となるよう座標軸の目盛りの範囲を変更したいのですが、コマンドラインの場所が分からないため変更の指示が打ち込めません。どうすればよいでしょうか

 Respuesta aceptada

Hiro Yoshino
Hiro Yoshino el 19 de Abr. de 2023

1 voto

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 comentario

文親
文親 el 19 de Abr. de 2023
変更できました。詳細にご回答いただきありがとうございます。

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Curve Fitting Toolbox 入門 en Centro de ayuda y File Exchange.

Preguntada:

el 18 de Abr. de 2023

Comentada:

el 19 de Abr. de 2023

Community Treasure Hunt

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

Start Hunting!