Community Profile

photo

danny


Active since 2013

Followers: 0   Following: 0

Message

Statistics

  • Thankful Level 1
  • First Answer

View badges

Feeds

View by

Answered
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...

10 years ago | 0

Answered
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 ...

10 years ago | 2

Question


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...

10 years ago | 1 answer | 0

1

answer