Continuous Graph in a loop

3 views (last 30 days)
Nick Sharma
Nick Sharma on 14 Jun 2019
Commented: Nick Sharma on 14 Jun 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 .

Accepted Answer

Walter Roberson
Walter Roberson on 14 Jun 2019
i = 0:1:10;
x = 1;
B = x * ones(size(i));
mask = i <= 3;
B(mask) = i(mask) + 2;
plot(i, B,'-*')
  1 Comment
Nick Sharma
Nick Sharma on 14 Jun 2019
Walter .....You are a Gem of a person ......thans bro.

Sign in to comment.

More Answers (0)

Categories

Find more on Line Plots in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!