在MATLAB中绘制*旋转*抛物线

时间:2011-11-21 18:06:30

标签: matlab plot

我知道如何绘制水平和/或垂直抛物线。是否有一种简单的方法来绘制旋转的抛物线,即包含x-y项的抛物线,例如,

3x 2 + 2 sqrt(3)xy + y 2 - 2y - 3 = 0

1 个答案:

答案 0 :(得分:2)

syms x y
ezplot('3*x^2 + 2*sqrt(3)*x*y + y^2 - 2*y - 3')

enter image description here