![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/174238/image.png)
May I ask how to do elliptic curve in matlab? because I have no idea to start...
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
loong seow li
il 3 Mag 2016
Commentato: Walter Roberson
il 17 Gen 2017
May I ask how to do elliptic curve in matlab? because I have no idea to start...
0 Commenti
Risposta accettata
Mike Garrity
il 3 Mag 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')
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/174238/image.png)
2 Commenti
Walter Roberson
il 17 Gen 2017
Sorry, Ammu P, that is a discussion that the laws of the USA do not permit us to hold here.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Special Functions in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!