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