trying to find L2 norm using for loops. where am I doing wrong?

1 vue (au cours des 30 derniers jours)
Aash
Aash le 16 Oct 2017
Commenté : KSSV le 16 Oct 2017
clear all
clearvars
x = [1.21, -3.42, 10.01, -0.13, -5.11, -1.29, 3.87, 2.16, -3.21, 0.02]
n = length(x)
sumx = 0
for x = 1: n
sumx = sum + [x(n)^2]
end
L2 = sqrt(sumx)

Réponse acceptée

KSSV
KSSV le 16 Oct 2017
x = [1.21, -3.42, 10.01, -0.13, -5.11, -1.29, 3.87, 2.16, -3.21, 0.02] ;
n = length(x) ;
sumx = 0 ;
for i = 1: n
sumx = sumx + x(i)^2 ;
end
L2 = sqrt(sumx)
  2 commentaires
Aash
Aash le 16 Oct 2017
thanks very much for your quick help
KSSV
KSSV le 16 Oct 2017
Thanks is accepting the answer....:)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Graphics Performance dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by