Normalize to unit norm
조회 수: 6 (최근 30일)
이전 댓글 표시
I have a variable containing a probability distribution (just an one-dimensional array of values). How can I normalize a to unit norm?
댓글 수: 0
채택된 답변
Wayne King
2012년 5월 27일
If you want to normalize a vector to have unit L2 norm.
x = randn(100,1);
x = x./norm(x,2);
norm(x,2)
댓글 수: 12
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!