How to add two conditions to a plot?

2 visualizzazioni (ultimi 30 giorni)
Padi
Padi il 15 Dic 2022
Modificato: Bora Eryilmaz il 15 Dic 2022
Hello! I am trying to impose two conditions on one plot. Specifically I want to change the color and make it a dashed line.
plot(x,u,x,v,x,AL,"b",x,BE, "r",'LineWidth',2.0), xlabel('x'), axis([0 1 0 1])), legend('u','v','alphaline','betaline'), pause(0.05)
how can I add on the AL and BE plot that I want "b" and '--'?? It keeps giving me an error.
Thanks!
  1 Commento
Padi
Padi il 15 Dic 2022
I tried x,AL, "b",'--' and
x,AL,["b", '--'] and they both give me errors.

Accedi per commentare.

Risposta accettata

Bora Eryilmaz
Bora Eryilmaz il 15 Dic 2022
Modificato: Bora Eryilmaz il 15 Dic 2022
You had unmatched parentheses among other things.
x = 1:10;
u = rand(1,10);
v = rand(1,10);
AL = rand(1,10);
BE = rand(1,10);
plot(x,u, x,v, x,AL,"b--", x,BE, "r:", 'LineWidth',2.0)
xlabel('x')
% axis([0 1 0 1])
legend('u','v','alphaline','betaline')

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by