decreasing point on curve
7 次查看(过去 30 天)
显示 更早的评论
采纳的回答
Aubai
2019-10-1
编辑:Aubai
2019-10-1
Hi,
basically there are two ways described there:
1- triangle thresholding
2- local maxima of curvature
i prefer the first one as i think it directly answer your question (the second one is for more spesific tasks)
% here is a small code to help you start
% Lets say your data are defined in (x,y) values
% then do the following
time = x;% here you should enter your data name
data = y;% here you should enter your data name
% Basically it draws a line from the peak to the tail and then draws
% perpendicular lines from that hypotenuse line to the curve.
% The longest (smollest) perpendicular line from the hypotenuse to the curve
% indicates the "corner" of the curve. Maybe that will work for you. (this discribtion was taken from the reference before)
% Two endpoints on the curve "data"
x = [time(1) time(end)];
y = [data(1) data(end)];
% The slope of the line connecting the two endpoints
m = ( y(2) - y(1) )/( x(2) - x(1) );
pm= - 1 / m;
figure();hold all
hP = plot(time,data,'b',x,y,'g',x(1),y(1), 'ro');grid on
yl = ( (m * time) + (m^2 * data) - (m * x(1)) + y(1) )/(1+m^2);
xl = T1 - m*(yl - data);
d2 = (xl - time).^2 + (yl - data).^2;
perpDist = d2;
[val_max, idx_max] = max(perpDist);
[val_min, idx_min] = min(perpDist(2:end-1));
[val_maxL, idx_maxL] = max(perpDist(1:idx_min));
plot(time,data,'b',time(idx_max),data(idx_max),'ro',time(idx_min),data(idx_min),'ro',time(idx_maxL),data(idx_maxL),'ro');grid on;hold all; plot(time,perpDist); hold off
I hope this answer your question (how accurate the point will depend on your massy data)
3 个评论
Aubai
2019-10-8
no problem, yet i am not sure is there a question there? or what do you want?
I already edited my answer to provide you with that exact point. as Matlab need a computer to do the calculation then there is always a round-off errors for representing the floating numbers in your computer language and that is why it is not always easy to just test or get results for A == B and the best way is to use the method already provided by your comment to find a general tolerance to fit all data is not possible (one of the soluation i use is to cut the finishing of the numbers when comparing it if you are interested for this soluation i may provied you with something)
更多回答(2 个)
Steven Lord
2019-10-1
The ischange function may be of use to you. The different method inputs detect different change points. Experiment with the various options.
>> x = -10:0.125:10;
>> y = -tanh(x);
>> plot(x, y)
>> ic = ischange(y, 'linear');
>> hold on
>> plot(x(ic), y(ic), 'ro')
If you're using release R2019b or later, you can facilitate this experimentation using the Find Change Points Live Editor Task in the Live Editor. This will allow you to interactively change the method and the parameters and see which change points MATLAB detected immediately.
KALYAN ACHARJYA
2019-9-30
编辑:KALYAN ACHARJYA
2019-9-30
One way:
Find the y, when y(i)<y(i-1) (First Case) iterate i from 2 to end
Second way:
data=y(i+1)-y(i); %Create the data, then apply diff for first positive/negative y value
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!