argmin function

13 views (last 30 days)
kash
kash on 5 May 2012
I am performing Sparse Representation-based Classification (SRC)algorithm ,In that i have completed 2 stepls ,till L2 NORMALISATION .now i want to perform L1 normalisation ,i have performed norm(A,1) is it correct ?,for this i want to find argminx||x||,lease tell hoe to perform

Answers (1)

Andrei Bobrov
Andrei Bobrov on 5 May 2012
norm(A(:),-inf)
OR:
min(A(:))
  1 Comment
kash
kash on 5 May 2012
Thanks andrei can u help me in finding the residuals please
in SRC ALGORITHM
http://www.sendspace.com/file/vj5fhi
page num 5 ,step 4 and 5 ,please help

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!