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!

 Respuesta aceptada

Image Analyst
Image Analyst el 26 de Nov. de 2020

0 votos

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

4 comentarios

zakary Surprenant
zakary Surprenant el 26 de Nov. de 2020
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
Image Analyst
Image Analyst el 26 de Nov. de 2020
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.
zakary Surprenant
zakary Surprenant el 26 de Nov. de 2020
Yah i added a hold off at the end and it work now, Thanks for your help!
Adam Danz
Adam Danz el 28 de Nov. de 2020

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

el 26 de Nov. de 2020

Comentada:

el 28 de Nov. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by