www.gusucode.com > graphics 案例源码程序 matlab代码 > graphics/PlotAnImplicitFunctionExample.m

    %% Plot an Implicit Function
% Plot the implicitly defined function $x^2-y^4 = 0$ over the domain $[-2\pi,2\pi]$.

% Copyright 2015 The MathWorks, Inc.


ezplot('x^2-y^4')

%%
% The default domain is $[-2\pi,2\pi]$.