MATLAB: How to plot x^2 – y^2 = 1

MATLABplot

Very simple question to understand I think.

Best Answer

Try this:
syms x y
figure
fimplicit(x^2 + y^2 -1, [-1 1])
axis('equal')
.