![](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 (최근 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')
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/174238/image.png)
댓글 수: 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!