Continuous Graph in a loop
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Nick Sharma
il 14 Giu 2019
Commentato: Nick Sharma
il 14 Giu 2019
Hi
My code is as below
i=0:1:10;
x=1;
if i<=3
B=3+x;
else
B=x;
plot(i,B,'*')
hold on
end
================
First of all my graph is not matching my expected result.
Secondly in my expected graph I want continuos line .
Please help .

0 Commenti
Risposta accettata
Walter Roberson
il 14 Giu 2019
i = 0:1:10;
x = 1;
B = x * ones(size(i));
mask = i <= 3;
B(mask) = i(mask) + 2;
plot(i, B,'-*')
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Line Plots in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!