Plot the phase plane
조회 수: 3 (최근 30일)
이전 댓글 표시
I am trying to plot the phase plane.
The code gives the error :Undefined function or variable 'ciplot'.
Error in phaseplane1 (line 6)
ciplot(lower, upper, x, 'b')
I tried to define ciplot as a function by using the code:
function ciplot(lower,upper,x,colour);
if nargin<4
colour='b';
end
if nargin<3
x=0:0.01:2;
end
But it still doesn't work.
댓글 수: 0
채택된 답변
Walter Roberson
2017년 9월 11일
http://www.mathworks.com/matlabcentral/fileexchange/13103-plot-confidence-intervals ciplot is in the File Exchange
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!