reading data from plots

5 次查看(过去 30 天)
RB
RB 2016-7-20
回答: KSSV 2016-7-21
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

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by