필터 지우기
필터 지우기

fplot a function in different intervals

조회 수: 1 (최근 30일)
Yaser Khojah
Yaser Khojah 2018년 7월 26일
편집: madhan ravi 2018년 7월 26일
I'm trying to plot a function in two different intervals. The function is the following:
if true
G = [14000000 10000000];
r_s = [1095000 255500];
d = [.1 .1];
t_0 = [0 0];
DF = @(r_s) (G ./ r_s) - (1 ./ d) + t_0;
fplot(DF)
end
Since I have two elements in the vector, the first element interival is = [400000 1400000] and the second is [222222.222222222 1000000].
Thank you so much for taking the time and looking into this.

채택된 답변

madhan ravi
madhan ravi 2018년 7월 26일
편집: madhan ravi 2018년 7월 26일
Hi ,
fplot(DF,[400000 1400000])
fplot(DF,[222222.222222222 1000000])
Is this what you are looking for?

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by