what mean normr in matlab??

 채택된 답변

Wayne King
Wayne King 2013년 3월 2일
편집: Wayne King 2013년 3월 2일

0 개 추천

That is a function in the Neural Network Toolbox that normalizes the rows of the matrix to have l2 norm.
For example:
X = randn(10,4);
Y = normr(X);
Now if you check:
for kk = 1:size(Y,1)
norm(Y(kk,:),2)
end
They all have unit norm.

댓글 수: 1

Greg Heath
Greg Heath 2013년 3월 2일
Before asking questions like this try
help normr
doc normr
type normr
Greg

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

질문:

2013년 3월 2일

Community Treasure Hunt

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

Start Hunting!

Translated by