MATLAB: How to plot ellipse x^2/4+y^2/9=1 and circle x^2+y^2=1 in a single figure window using ezplot and hold on commands

ellipse

new to matlap.

Best Answer

ezplot('x^2/4+y^2/9=1'); axis equal; hold on
ezplot('x^2+y^2=1')
Related Question