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

17 ビュー (過去 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')
  2 件のコメント
RESHMA
RESHMA 2017 年 1 月 17 日
pls help me to encrypt an image using elliptic curve
Walter Roberson
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 ExchangeProgramming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by