I cannot get equitation plotted
Expression:
f1: (x^2) + (y^2) = 9;
I try this command:
wxplot2d(f1, [x, -5, 5], [y, -5, 5]);
And it gives:
plot2d: expression evaluates to non-numeric value everywhere in plotting range.
plot2d: nothing to plot.
What is correct way to plot such expressions?
Comment turned answer by request. One can plot the circle as an implicit plot. $$ \begin{align} & \text{load(draw);}\\ & \text{draw2d(implicit(x^2+y^2-9,x,-4,4,y,-4,4));} \end{align} $$