Curve Fitting Toolbox コマンドラインによる座標軸の範囲と目盛り設定について
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Curve Fitting Toolboxで作成したグラフについて、左下が原点0となるよう座標軸の目盛りの範囲を変更したいのですが、コマンドラインの場所が分からないため変更の指示が打ち込めません。どうすればよいでしょうか
0 Commenti
Risposta accettata
Hiro Yoshino
il 19 Apr 2023
Curve fitting app >> エクスポート >> Figure にエクスポート
後だと思って以下を見てみてください。
x = -1:0.1:3;
y = cos(x);
plot(x,y);
グラフィックスオブジェクトを探して、プログラミング的に各ハンドルを操作できます
Axes オブジェクトを探して:
ax = findall(groot,'Type','Axes')
Xlim プロパティを変更
ax.XLim(1) = 0
Più risposte (0)
Vedere anche
Categorie
Scopri di più su 近似の後処理 in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!