Borrar filtros
Borrar filtros

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

1 visualización (últimos 30 días)
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

Respuesta aceptada

Image Analyst
Image Analyst el 12 de Dic. de 2021
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 comentarios
Image Analyst
Image Analyst el 17 de Dic. de 2021
I think it's within your abilities, nonetheless I'm working on it now.
Image Analyst
Image Analyst el 17 de Dic. de 2021
Editada: John Kelly el 29 de Dic. de 2021
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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by