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