New to Matlab and trying to find the index of a height y when it first becomes negative on my plot.

 Réponse acceptée

Mischa Kim
Mischa Kim le 29 Oct 2014

1 vote

Steven, use something like
x = 1:0.1:5;
y = sin(x); % this would be your height
ind = find(x==min(x(y<0)))

Plus de réponses (0)

Catégories

Community Treasure Hunt

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

Start Hunting!

Translated by