reading data from plots

3 vues (au cours des 30 derniers jours)
RB
RB le 20 Juil 2016
Réponse apportée : KSSV le 21 Juil 2016
I want to determine the time duration between the first and the last instant when the y value for the (t,y) plot becomes 1% of the maximum y vale; (t may have mutiple values when y becomes 1% of max);I can find max value of y with indexmax = find(max(y) == y); ymax = y(indexmax); need help with the code; thanks

Réponse acceptée

KSSV
KSSV le 21 Juil 2016
use
idx= find(y==ymax*1/100); % 1 % of maximum value
doc find

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by