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 years 前 | 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 years 前 | 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 years 前 | 1 个回答 | 0

