在实数上绘制椭圆曲线

时间:2016-05-01 13:33:00

标签: r plot elliptic-curve

如何绘制椭圆曲线

formula

用R?

超过实数

2 个答案:

答案 0 :(得分:0)

通过手动构建点,这是一种可行的方法。

df <- data.frame(x = -100:100, y = c(sqrt(x^3-3*x+ 2), -sqrt(x^3-3*x+ 2)))
ggplot(df, aes(x = x, y = y)) + geom_point()

enter image description here

答案 1 :(得分:0)

这可行:

df <- data.frame(x = seq(-300, 300, 0.1), y = c(sqrt(x^3 - 3*x + 2), -sqrt(x^3 - 3*x + 2)))

ggplot(df, aes(x = x, y = y)) + geom_point()