Feeds
回答済み
how to write matlab code for a rotation invariant of a point(x,y)
have a look at the procrustes function [d,Z,tr] = procrustes(X, Y); it takes two sets of points; the original points(X) an...
how to write matlab code for a rotation invariant of a point(x,y)
have a look at the procrustes function [d,Z,tr] = procrustes(X, Y); it takes two sets of points; the original points(X) an...
12年以上 前 | 0
回答済み
Odd numbered elements problem
you can probably use a loop e.g. k=1; for n = 1:length(x), if mod(n,2)==1, y(k) = x(n); k =k+1; end; end or just ...
Odd numbered elements problem
you can probably use a loop e.g. k=1; for n = 1:length(x), if mod(n,2)==1, y(k) = x(n); k =k+1; end; end or just ...
12年以上 前 | 2
質問
how to remove unique values.
Hi, I have a vector with some repeating values, and some unique. e.g. A = [ 1 1 2 4 4 3 4 1 5 3] How do i remove the...
12年以上 前 | 1 件の回答 | 0

