May I ask how to do elliptic curve in matlab? because I have no idea to start...

22 次查看(过去 30 天)
May I ask how to do elliptic curve in matlab? because I have no idea to start...

采纳的回答

Mike Garrity
Mike Garrity 2016-5-3
Elliptic curves are examples of implicit curves. I discussed how to plot implicit curves in this post on the MATLAB Graphics blog.
Here's a simple example:
[x,y] = meshgrid(linspace(-2,2,250));
contour(x,y,y.^2-x.^3+x,'LevelList',0)
title('Y^2 = X^3-X')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by