매트랩 ezplot 사용시 오류

13 visualizaciones (últimos 30 días)
hwanil choi
hwanil choi el 29 de Jun. de 2020
Comentada: madhan ravi el 29 de Jun. de 2020
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]);

Respuestas (1)

madhan ravi
madhan ravi el 29 de Jun. de 2020
Editada: madhan ravi el 29 de Jun. de 2020
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 comentarios
hwanil choi
hwanil choi el 29 de Jun. de 2020
I must use ezplot
madhan ravi
madhan ravi el 29 de Jun. de 2020
Type
which ezplot -all % and paste the output here

Iniciar sesión para comentar.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!