Effacer les filtres
Effacer les filtres

If i have a graph that levels off, how can i find the first x value this occurs at, on matlab?

4 vues (au cours des 30 derniers jours)
I have a temperature VS time graph, and am looking for the first time(x) at which it levels off at a certain temp (y).
  2 commentaires
Aisling Laverty
Aisling Laverty le 15 Déc 2017
it was generated on simulink. i wondered if this would work?
Tstarfinal520= T_star_5_20(end); boundary520t=0.999*Tstarfinal520; %because it never is at dy/dx=0, so 99.9% should be ok.
place=find(T_star_5_20>=boundary520t); leveltime520t=tout(place(1))

Connectez-vous pour commenter.

Réponses (2)

KL
KL le 15 Déc 2017
It depends on how you've stored your data. Let's you have them in a matrix,
data = [(1:10)' zeros(10,1)];
data(5,2) = 10;
data =
1 0
2 0
3 0
4 0
5 10
6 0
7 0
8 0
9 0
10 0
Let's say column 1 is time and 2 is temperature. I want to find the time when tepmerature is 10,
t = data(data(:,2)==10,1)
t =
5

Image Analyst
Image Analyst le 15 Déc 2017
Perhaps use findchangepts().
Or use movstd() or stdfilt() and find the last element where the standard deviation in a window falls below a certain level.

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by