Borrar filtros
Borrar filtros

How does normr work?

3 visualizaciones (últimos 30 días)
Kenneth Morley
Kenneth Morley el 28 de En. de 2014
Respondida: Jos (10584) el 28 de En. de 2014
Yes i realize it returns a matrix with the values having a norm of 1 but how exactly does it do this? My knowledge of statistics is sorely lacking.
Thanks!

Respuesta aceptada

Jos (10584)
Jos (10584) el 28 de En. de 2014
You can open the m-file (type norm.m) and find something like this:
[mr,mc]=size(m);
if (mc == 1)
n = m ./ abs(m);
else
n=sqrt(ones./(sum((m.*m)')))'*ones(1,mc).*m;
end
That's all ...

Más respuestas (0)

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by