Matlab code for solving 2D Laplace pde

19 visualizzazioni (ultimi 30 giorni)
Kornelija Paulauskaite
Kornelija Paulauskaite il 24 Nov 2017
Risposto: Vishwanatha S il 13 Dic 2021
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.

Risposte (2)

Precise Simulation
Precise Simulation il 24 Nov 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
Vishwanatha S il 13 Dic 2021
Gauss Seidel iteration

Community Treasure Hunt

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

Start Hunting!

Translated by