Plot implicit function
fimplicit(
plots
the implicit function defined by f
)f(x,y) = 0
over
the default interval [-5 5]
for x
and y
.
fimplicit(
plots
into the axes specified by ax
,___)ax
instead of into the
current axes. Specify the axes as the first input argument, prior
to any of the previous input arguments.
fimplicit(___,
specifies
the line style, marker symbol, and line color. For example, LineSpec
)'-r'
plots
a red line.
fimplicit(___,
specifies
line properties using one or more name-value pair arguments. For example, Name,Value
)'LineWidth',2
specifies
a line width of 2 points.
returns
the fp
= fimplicit(___)ImplicitFunctionLine
object. Use fp
to
access and modify properties of the line after it is created. For
a list of properties, see ImplicitFunctionLine Properties.
Use element-wise operators for the best performance
and to avoid a warning message. For example, use x.*y
instead
of x*y
. For more information, see Array vs. Matrix Operations.
When you zoom in on the chart, fimplicit
recalculates
the data, which can reveal hidden details.