필터 지우기
필터 지우기

unique elliptic curve points

조회 수: 1 (최근 30일)
sadiqa ilyas
sadiqa ilyas 2019년 8월 17일
댓글: sadiqa ilyas 2019년 8월 17일
I have few points (0,8),(0,64),(28,1)(28,66),(9,47)(9,20),(54,20)(54,47),(21,10),(21,51)
Is there any matlab command which checks the x coordinate and select only unique point (based on x coordinate)
e.g (0,8),(28,66)(9,47),(54,20),(21,10)

채택된 답변

Bruno Luong
Bruno Luong 2019년 8월 17일
use UNIQUE command
  댓글 수: 4
Bruno Luong
Bruno Luong 2019년 8월 17일
P=[0 8
0 59
4 20
4 47
5 23
5 44
9 20]
[~,i]=unique(P(:,1));
P(i,:)
sadiqa ilyas
sadiqa ilyas 2019년 8월 17일
It works Thanks but how to arrange in table 8*n form

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Cartesian Coordinate System Conversion에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by