Matlab code for solving 2D Laplace pde

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.

回答 (2 件)

Precise Simulation
Precise Simulation 2017 年 11 月 24 日

0 投票

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 2021 年 12 月 13 日

0 投票

Gauss Seidel iteration

質問済み:

2017 年 11 月 24 日

回答済み:

2021 年 12 月 13 日

Community Treasure Hunt

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

Start Hunting!

Translated by