Borrar filtros
Borrar filtros

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

2 visualizaciones (últimos 30 días)
Aash
Aash el 16 de Oct. de 2017
Comentada: KSSV el 16 de Oct. de 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)

Respuesta aceptada

KSSV
KSSV el 16 de Oct. de 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 comentarios
Aash
Aash el 16 de Oct. de 2017
thanks very much for your quick help
KSSV
KSSV el 16 de Oct. de 2017
Thanks is accepting the answer....:)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Simulink Environment Customization 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