MATLAB: L1 normalization of vector

l1normalization

I need to normalize the feature vectors by L1 normalization. Is there any built-in function in matlab? otherwise what is the procedure?

Best Answer

x/norm(x,1)
Related Question