Calculation of distance automatically at height h and from point O for different curve

1 次查看(过去 30 天)
Hi all,
I hope you are doing well in this pandemic. I am new at Matlab, and i would like to solve one problem, which i am thinks very difficult to solve with the Matlab. I have one formula which calculates the curve at different K value. I need to evaluate the value of X1 , X2, X3 , X4, , X5, and X6 at height "H" from point "O" automatically for further condition. How can i caculate automatically by algorithm and use those different X1 , X2, X3 , X4, , X5 and X6 value in further algorithm. (For explnation, You can see it in the picture and you willl understand it much better)
My mind is stopped working for this, so any ray of light from you guys will be highly appreciable.
Thanks a ton
Jenny Lee

采纳的回答

Image Analyst
Image Analyst 2021-12-12
Isn't it just
% Find the index where the curve, for some particular k value, first drops below -0.05.
index = find(kCurve < -0.05, 1, 'first');
% Use that index to get the x value where the curve first drops below -0.05.
xN = x(index);
  16 个评论
Image Analyst
Image Analyst 2021-12-17
编辑:John Kelly 2021-12-29
OK, I think I've got it, though I've spent way more time for you than I usually spend for people, but you're just so nice. 🙂
[image snipped] at request of Mathworks.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by