How to select the starting point of a curve and tare all x, y plot data to this point
12 ビュー (過去 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)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/573122/image.png)
4 件のコメント
採用された回答
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)
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-')
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!