異なる線幅で線をプロットするにはどうしたらよいですか?
2 views (last 30 days)
Show older comments
MathWorks Support Team
on 13 Nov 2024 at 0:00
Answered: MathWorks Support Team
on 13 Nov 2024 at 3:33
次のようにプロットしたいのですが:
plot(x1, y1, x2, y2, 'LineWidth', 8)
LineWidthプロパティが両方の線に適用されてしまいます。線1と線2で異なる幅にするには、hold onコマンドを使って2つのプロット関数を使用する必要がありますか?ありがとうございます。
Accepted Answer
MathWorks Support Team
on 13 Nov 2024 at 0:00
異なる線幅で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 Comments
More Answers (0)
See Also
Categories
Find more on ビッグ データの処理 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!