Skip to content

Jacobi Iteration Method #5113

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 20 commits into from
Nov 9, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update arithmetic_analysis/jacobi_iteration_method.py
Co-authored-by: Christian Clauss <cclauss@me.com>
  • Loading branch information
eviltypha and cclauss authored Oct 16, 2021
commit 4f3f8ca317e8782860f0c7146409441385214f35
1 change: 0 additions & 1 deletion arithmetic_analysis/jacobi_iteration_method.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ def jacobi_iteration_method(
ValueError: Number of initial values must be equal to number of rows in coefficient
matrix but received 2 and 3


>>> coefficient = np.array([[4, 1, 1], [1, 5, 2], [1, 2, 4]])
>>> constant = np.array([[2], [-6], [-4]])
>>> init_val = [0.5, -0.5, -0.5]
Expand Down