This document includes all the codes you need to know by heart for APM1513. I explained what each line does, that way you can understand what you code. This is very important because it makes it easier to memorize it.
THE JACOBI CODE: please see study guide for complete discussion
Function xnew=Jacobi(A,b,xold)
n=size(A1); extract size of the matrix A from input
At=A;
Xnew=xold; x1 is entered into its place when determining x2.
For k=1:n Work through all the equations
At(k,k)=0 when calc. x1, we made x2 and x3=0
Xnew(k)=(b(k)-At(k,:)*xold)/A(k,k)
b(k)-> vector of right-hand side
At(k,:)-> extract row
A(k,k)-> coefficient of the X we are looking at
End
Endfunction
GAUSS-SEIDEL CODE: please see study guide for complete discussion.
Function xnew=Jacobi(A,b,xold)
n=size(A1);
At=A;
Xnew=xold;
For k=1:n
At(k,k)=0
Xnew(k)=(b(k)-At(k,:)*xnew)/A(k,k) xnew is the only difference.
End
Endfunction
ITERATIVE LINEAR SOLVING METHOD: Please see study guide for complete discussion
Los beneficios de comprar resúmenes en Stuvia estan en línea:
Garantiza la calidad de los comentarios
Compradores de Stuvia evaluaron más de 700.000 resúmenes. Así estas seguro que compras los mejores documentos!
Compra fácil y rápido
Puedes pagar rápidamente y en una vez con iDeal, tarjeta de crédito o con tu crédito de Stuvia. Sin tener que hacerte miembro.
Enfócate en lo más importante
Tus compañeros escriben los resúmenes. Por eso tienes la seguridad que tienes un resumen actual y confiable.
Así llegas a la conclusión rapidamente!
Preguntas frecuentes
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
100% de satisfacción garantizada: ¿Cómo funciona?
Nuestra garantía de satisfacción le asegura que siempre encontrará un documento de estudio a tu medida. Tu rellenas un formulario y nuestro equipo de atención al cliente se encarga del resto.
Who am I buying this summary from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller caterinavstaden. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy this summary for 9,20 €. You're not tied to anything after your purchase.