異なる線幅で線をプロットするにはどうしたらよいですか?
20 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
MathWorks Support Team
il 13 Nov 2024
Risposto: MathWorks Support Team
il 13 Nov 2024
次のようにプロットしたいのですが:
plot(x1, y1, x2, y2, 'LineWidth', 8)
LineWidthプロパティが両方の線に適用されてしまいます。線1と線2で異なる幅にするには、hold onコマンドを使って2つのプロット関数を使用する必要がありますか?ありがとうございます。
Risposta accettata
MathWorks Support Team
il 13 Nov 2024
異なる線幅で2本の線をプロットするには、以下のいずれかの方法を使用できます。
1.plot関数から2つの「Line」オブジェクトを出力引数として返し、それぞれのLineWidthプロパティを設定します。
p = plot(x1, y1, x2, y2);
p(1).LineWidth = 5;
p(2).LineWidth = 10;
2.hold onコマンドを使用して、2本の線を別々にプロットします。それぞれの線の幅を名前と値のペアを使って設定します。
plot(x1, y1, 'LineWidth', 5)
hold on
plot(x2, y2, 'LineWidth', 10)
hold off
このようにして、異なる線幅で線をプロットすることができます。
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su ライン プロット in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!