problem with the sum function

3 ビュー (過去 30 日間)
Rodrigo Franco
Rodrigo Franco 2020 年 7 月 2 日
回答済み: Image Analyst 2020 年 7 月 2 日
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?

採用された回答

madhan ravi
madhan ravi 2020 年 7 月 2 日
norma2 = sqrt(sum(X.^2))
  1 件のコメント
Rodrigo Franco
Rodrigo Franco 2020 年 7 月 2 日
thanks

サインインしてコメントする。

その他の回答 (1 件)

Image Analyst
Image Analyst 2020 年 7 月 2 日
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

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by