May I ask how to do elliptic curve in matlab? because I have no idea to start...
7 views (last 30 days)
Show older comments
loong seow li
on 3 May 2016
Commented: Walter Roberson
on 17 Jan 2017
May I ask how to do elliptic curve in matlab? because I have no idea to start...
0 Comments
Accepted Answer
Mike Garrity
on 3 May 2016
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 Comments
Walter Roberson
on 17 Jan 2017
Sorry, Ammu P, that is a discussion that the laws of the USA do not permit us to hold here.
More Answers (0)
See Also
Categories
Find more on Special Functions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!