Borrar filtros
Borrar filtros

what mean normr in matlab??

6 visualizaciones (últimos 30 días)
mina
mina el 2 de Mzo. de 2013
what mean normr in matlab??

Respuesta aceptada

Wayne King
Wayne King el 2 de Mzo. de 2013
Editada: Wayne King el 2 de Mzo. de 2013
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 comentario
Greg Heath
Greg Heath el 2 de Mzo. de 2013
Before asking questions like this try
help normr
doc normr
type normr
Greg

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by