reading data from plots

3 ビュー (過去 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 Center および File Exchange2-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