Could you please tell me how can I remove symmetric rows from matrix in Matlab? For example if
X=[1 2 3;
4 5 6;
1 2 3]
I would like to get
Y=[1 2 3;
4 5 6]
by removing the third row.
Could you please tell me how can I remove symmetric rows from matrix in Matlab? For example if
X=[1 2 3;
4 5 6;
1 2 3]
I would like to get
Y=[1 2 3;
4 5 6]
by removing the third row.