異なる線幅で線をプロ​ットするにはどうした​らよいですか?

21 visualizaciones (últimos 30 días)
MathWorks Support Team
MathWorks Support Team el 13 de Nov. de 2024
Respondida: MathWorks Support Team el 13 de Nov. de 2024

次のようにプロットしたいのですが:

plot(x1, y1, x2, y2, 'LineWidth', 8)
LineWidthプロパティが両方の線に適用されてしまいます。線1と線2で異なる幅にするには、hold onコマンドを使って2つのプロット関数を使用する必要がありますか?ありがとうございます。

Respuesta aceptada

MathWorks Support Team
MathWorks Support Team el 13 de Nov. de 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
このようにして、異なる線幅で線をプロットすることができます。

Más respuestas (0)

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!