Trendline with Slope of zero

21 vues (au cours des 30 derniers jours)
Heather
Heather le 21 Fév 2019
Commenté : Heather le 25 Fév 2019
Hello,
I have a vector of raw lamp radiance data, and a vector of the moving standard deviation of that data. I want to add a trendline for the range of the standard deviation in which the slope is zero, in order to show when the lamp is stable. I have used polyfit to place the trendline to the graph, but it is not perfectly straight over the entire range of data. Is there a function in MATLAB that does this for me, or do I just have to keep adjusting which range of data I would like to look at manually?

Réponse acceptée

Image Analyst
Image Analyst le 23 Fév 2019
A line with slope zero will have a fixed constant y value. If you know that y value, you can draw a line there with line():
line(xlim, [y, y], 'LineWidth', 2, 'Color', 'r');
grid on;
Attach your data if you want more help so we can offer a solution with your exact data.
  8 commentaires
Image Analyst
Image Analyst le 24 Fév 2019
What I would do it fit this to "the rate equation" and decide how far below the theoretical assymptote defines "stable" for you. I attach a rate equation fitting. See if you can adapt it to your data and determine when the assymptote is. It should be around 0.14835.
Heather
Heather le 25 Fév 2019
This was excellent! Thank you so much! I adjusted it a few times and got just below and above the 0.14835 gridline. I really appreciate all of your help and explanations. I think I misunderstood which graph to plot the trendline on, so I appreciate you explaining the standard deviation graph to me.

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by