How to delete a part of a curve?

조회 수: 1 (최근 30일)
Radhika Bakshi
Radhika Bakshi 2021년 11월 24일
답변: Yongjian Feng 2021년 11월 24일
I want to delete parts of this curve in order to get the regions in which a particular compound is stable. How do i delete the red and blu lines upto the shown point and the green line after the point.

답변 (1개)

Yongjian Feng
Yongjian Feng 2021년 11월 24일
Can you find the point? If you know the point (say t1), then you can have
T1 = linspace(t1, 1500, 100);
T2 = linspace(300, t1, 100);
plot(T2, m1);
plot(T2, m3);
plot(T1, m2);
Is this what you want?

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by