residual r=ax-b ∞-norm

78 visualizaciones (últimos 30 días)
dulanga
dulanga el 18 de Mzo. de 2019
Comentada: dulanga el 19 de Mzo. de 2019
This is my code but i dont get the coorect answer
a = [-5 8 -5; 0 0 12; 3 -7 -3;6 -4 4]
b = [1;1;1;1]
x=a\b
r=a*x-b
x1=sqrt(sum(r.*r))
  1 comentario
Walter Roberson
Walter Roberson el 19 de Mzo. de 2019
what is the definition of infinity norm?

Iniciar sesión para comentar.

Respuesta aceptada

dulanga
dulanga el 19 de Mzo. de 2019
Would this be correct to get infinty norm
a = [-5 8 -5; 0 0 12; 3 -7 -3;6 -4 4]
b = [1;1;1;1]
x=a\b
r=a*x-b
N = norm(r, Inf)
  4 comentarios
John D'Errico
John D'Errico el 19 de Mzo. de 2019
That is correct, as long as you are allowed to use the norm function. Things like that are sometimes not allowed in homework. If not, then you need to do as I suggested, as
max(abs( r ))
dulanga
dulanga el 19 de Mzo. de 2019
noted

Iniciar sesión para comentar.

Más respuestas (1)

John D'Errico
John D'Errico el 19 de Mzo. de 2019
Why would you possibly have expected to get the right answer? Was the infinity norm requested? Is it a 2-norm that you computed?
x1=sqrt(sum(r.*r))
If r is the vector of residuals, then what do you want to compute? It seems like you want the maximum of the absolute value of the residuals. How would you do that?

Categorías

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