unique elliptic curve points

1 visualización (últimos 30 días)
sadiqa ilyas
sadiqa ilyas el 17 de Ag. de 2019
Comentada: sadiqa ilyas el 17 de Ag. de 2019
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)

Respuesta aceptada

Bruno Luong
Bruno Luong el 17 de Ag. de 2019
use UNIQUE command
  4 comentarios
Bruno Luong
Bruno Luong el 17 de Ag. de 2019
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 el 17 de Ag. de 2019
It works Thanks but how to arrange in table 8*n form

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Cartesian Coordinate System Conversion en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by