problem with the sum function

4 visualizaciones (últimos 30 días)
Rodrigo Franco
Rodrigo Franco el 2 de Jul. de 2020
Respondida: Image Analyst el 2 de Jul. de 2020
Hello everyone, im trying to solve this exercise
but appear a error that i dont know how to solve
"Error using ^
Inputs must be a scalar and a square matrix.
To compute elementwise POWER, use POWER (.^) instead."
this is my code:
function [norma2] = normalizacao(X)
[n, m] = size(X);
for i = 1:n
for j = 1:m
norma2(i, j) = sqrt(sum(X(i, :)^2))
end
end
end
Someone can help me?

Respuesta aceptada

madhan ravi
madhan ravi el 2 de Jul. de 2020
norma2 = sqrt(sum(X.^2))

Más respuestas (1)

Image Analyst
Image Analyst el 2 de Jul. de 2020
You need to leave i as a variable because it did not say to sum over i. So just sum over the j dimension for a given i.
Try this:
norma2 = sqrt(sum(X(i, 1 : M) .^ 2));
No loops needed. Perhaps M is the number of columns, but it didn't say that explicitly so I'm just leaving it as M

Categorías

Más información sobre Install Products 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