異なる線幅で線をプロットするにはどうしたらよいですか?
34 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MathWorks Support Team
le 13 Nov 2024
Réponse apportée : MathWorks Support Team
le 13 Nov 2024
次のようにプロットしたいのですが:
plot(x1, y1, x2, y2, 'LineWidth', 8)
LineWidthプロパティが両方の線に適用されてしまいます。線1と線2で異なる幅にするには、hold onコマンドを使って2つのプロット関数を使用する必要がありますか?ありがとうございます。
Réponse acceptée
MathWorks Support Team
le 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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur ライン プロット dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!