필터 지우기
필터 지우기

what mean normr in matlab??

조회 수: 6 (최근 30일)
mina
mina 2013년 3월 2일
what mean normr in matlab??

채택된 답변

Wayne King
Wayne King 2013년 3월 2일
편집: Wayne King 2013년 3월 2일
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개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by