Graph will not display

8 views (last 30 days)
panacean
panacean on 25 Jan 2018
Commented: panacean on 25 Jan 2018
the program is still in the early stages, so quite abit of it is commented out. My loop is running through with no errors, but I'm not getting the graph to display. Any thoughts on why would be appreciated. I attached the file below.

Accepted Answer

Walter Roberson
Walter Roberson on 25 Jan 2018
Change
plot(x2,fx)
to
plot(x2, fx, '*')
  3 Comments
Walter Roberson
Walter Roberson on 25 Jan 2018
You have
x2=1:number;
so x2 is a vector.
You have
while x2 < number
Here x2 is a vector. In MATLAB, this test is the same as
while all(x2 < number)
-- the body of the while is only executed if all elements of the vector x2 are < number. But some of them are not.
Perhaps you should be using a for loop instead of a while loop.
panacean
panacean on 25 Jan 2018
Worked like a charm, thanks for the help.

Sign in to comment.

More Answers (0)

Categories

Find more on Graph and Network Algorithms 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!