매트랩 ezplot 사용시 오류

matlab 프로그램에서는 실행이 안되는데 웹버전에서는 실행이 되네요 무슨 문제가 있는건가요?
hold on;
ezplot('(x-2)^2+(y-3)^2-16',[-10,10]);
ezplot('x^2+y^2-25');
[xout,yout] = circcirc(2,3,4,0,0,5)
SCRIPT ezplot을(를) 함수로 실행하려고 했습니다.
C:\Users\ㄱㄴㄷ\Documents\MATLAB\ezplot.m
오류 발생: ezplot (line 3)
ezplot('(x-2)^2+(y-3)^2-16',[-10,10]);

답변 (1개)

madhan ravi
madhan ravi 2020년 6월 29일
편집: madhan ravi 2020년 6월 29일

0 개 추천

You made a file named ezplot.m please remove it from the path or rename.
% Use fplot as the documentation suggests
fplot(@(x,y)(x-2).^2+(y-3).^2-16,[-10,10])

댓글 수: 5

hwanil choi
hwanil choi 2020년 6월 29일
I changed my file name
program didn't work but web version matlab work this
hold on;
ezplot('(x-2)^2+(y-3)^2-16',[-10,10]);
ezplot('x^2+y^2-25');
[xout,yout] = circcirc(2,3,4,0,0,5)
hwanil choi
hwanil choi 2020년 6월 29일
plz help me
madhan ravi
madhan ravi 2020년 6월 29일
Just see my answer.
hwanil choi
hwanil choi 2020년 6월 29일
I must use ezplot
madhan ravi
madhan ravi 2020년 6월 29일
Type
which ezplot -all % and paste the output here

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

제품

질문:

2020년 6월 29일

댓글:

2020년 6월 29일

Community Treasure Hunt

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

Start Hunting!