How to select the starting point of a curve and tare all x, y plot data to this point

조회 수: 37 (최근 30일)
Hi all,
I am looking to select the starting point of my curve and tare all x,y data to this point.
I tried using the 'findchangepts' function but this doesn't always select the correct point.
Is there an automated function to do this or a way to select the correct point directly from the plot?
T = readtable('sample1.xlsx');
X=T{:,1};
Y=T{:,2};
figure(1)
plot(X, Y)
  댓글 수: 4
Rachel Cahalane
Rachel Cahalane 2021년 4월 6일
I mean transform all the data from the identified starting point back to the origin (0,0).
Like the following:

댓글을 달려면 로그인하십시오.

채택된 답변

Chad Greene
Chad Greene 2021년 4월 5일
Perhaps you could find the index of the location where the chage in Y exceeds some critical threshold. You'll have to manually tune the threshold, but consider this case:
X = 1:6;
Y = [0 0 0 1 2 3];
plot(X,Y,'o-')
Find the index of the first location where the change in Y begins:
ind = find(gradient(Y)>0.1,1)
ind = 3
That says the curve begins at the third element. Now I'm not sure what you mean by 'tare', but you can subtract the values at the start of the curve to put the origin at zero, like this:
X = X - X(ind);
Y = Y - Y(ind);
plot(X,Y,'o-')
Or you could delete the first values from the arrays:
X(1:(ind-1)) = [];
Y(1:(ind-1)) = [];
plot(X,Y,'o-')
  댓글 수: 1
Rachel Cahalane
Rachel Cahalane 2021년 4월 6일
Thank you.
I think the gradient approach may not work for me, however I can label points on the plot to determine the correct x-range:
T = readtable('sample1.xlsx');
X=T{:,1};
X=times(X,1000)
%convert to ensure that all values are integers
Y=T{:,2};
figure(1);
plot(X, Y);
%for example the desired x-range is 3938-5995
X(1:(3938-1)) = [];
Y(1:(3938-1)) = [];
figure(2)
plot(X,Y);
How can I also delete all the values greater than 5995 from the plot?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by