Get envelope of multiples curve
조회 수: 13 (최근 30일)
이전 댓글 표시
Dear all Any idea about the envelope of 2 or more curves via Matlab; Please see the attached Xls file Thanks
댓글 수: 4
Roger Stafford
2016년 2월 29일
편집: Roger Stafford
2016년 3월 1일
@Lila: The word 'envelope' is not appropriate for "fitting" a curve to a finite number of other curves. You need a precise definition of the curve you are seeking if you want matlab to determine it.
채택된 답변
Star Strider
2016년 2월 29일
With your data, I would simply use the min and max functions:
d = xlsread('Lila wagou 3_Curves.xlsx');
t = d(:,1);
data = d(:,2:end);
env = [min(data,[],2) max(data,[],2)];
figure(1)
plot(t, data)
hold on
plot(t, env(:,1), '-g', 'LineWidth',2)
plot(t, env(:,2), '-g', 'LineWidth',2)
hold off
grid
댓글 수: 4
Anand
2023년 7월 27일
Is there a way to characterize lets say 1k graphs, and then any new series that's added can be approved/rejected based on it being inside the envelope?
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!