I want to convert elliptic curve points as cell
a=0:66;
left_side = mod(a.^2,67);
right_side = mod(a.^3+1*a-3,67);
C={};
for i = 1:length(right_side)
I = find(left_side == right_side(i));
for j=1:length(I)
points = [points;a(i),a(I(j))];
C={points}
end
end
C=mat2cell(points)
I dont know whats wrong with this