Matlab code for solving 2D Laplace pde
Mostrar comentarios más antiguos
I already discretized pde by central difference method, but not sure how to create a code for iterative methods such as Jacobi and Gauss Seidel.
Respuestas (2)
Precise Simulation
el 24 de Nov. de 2017
Sparse linear solvers are already available in Matlab, the backslash operator per default uses the Umfpack direct solver
y = A\x;
help \
for iterative solvers you can for example use gmres or bicg
help gmres
help bicg
Vishwanatha S
el 13 de Dic. de 2021
0 votos
Gauss Seidel iteration
Categorías
Más información sobre Eigenvalue Problems en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!