How can I write code for zero mean and scaling for a matrix of m*n dimension?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am having matrix of dimension m*n and want to compute zero mean of that matrix and then scaled to it for providing a error value ?
0 comentarios
Respuesta aceptada
Walter Roberson
el 9 de Mzo. de 2013
newmatrix = yourmatrix - mean2(yourmatrix);
newmatrix = newmatrix ./ max(abs(newmatrix(:)));
4 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!