May I ask how to do elliptic curve in matlab? because I have no idea to start...
7 次查看(过去 30 天)
显示 更早的评论
May I ask how to do elliptic curve in matlab? because I have no idea to start...
0 个评论
采纳的回答
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')
2 个评论
Walter Roberson
2017-1-17
Sorry, Ammu P, that is a discussion that the laws of the USA do not permit us to hold here.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Special Functions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!