I can't get to add a linear fit line,
This is my code ma and me can be ignored it is for the other plots,
and this the graph i get, i just need to have a linear fit added into it!

 Accepted Answer

Add this:
hold on;
plot(x, curve, 'b-', 'LineWidth', 3);

4 Comments

I have a stackedplot higher up in my script so the first time i run with this it works but when i rerun it it says error and that my stackedplot needs to be hold off, and idea
I don't know why that would be true. Maybe at the beginning of your script put
close all;
So that no figure is open when you rerun it, and it will draw everything from scratch. Or you could try
cla reset;
if you wanted to keep the figure from prior runs up for some reason.
Yah i added a hold off at the end and it work now, Thanks for your help!

Sign in to comment.

More Answers (0)

Categories

Tags

Community Treasure Hunt

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

Start Hunting!