-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathjacobi_poisson_1d.html
More file actions
105 lines (82 loc) · 2.27 KB
/
jacobi_poisson_1d.html
File metadata and controls
105 lines (82 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<html>
<head>
<title>
JACOBI_POISSON_1D - Jacobi Iteration for Steady 1D Poisson Equation
</title>
</head>
<body bgcolor="#eeeeee" link="#cc0000" alink="#ff3300" vlink="#000055">
<h1 align = "center">
JACOBI_POISSON_1D <br> Jacobi Iteration for Steady 1D Poisson Equation
</h1>
<hr>
<p>
<b>JACOBI_POISSON_1D</b>
is a MATLAB program which
demonstrates how the linear system for a discretized version of the
steady 1D Poisson equation can be solved by the Jacobi iteration.
</p>
<h3 align = "center">
Licensing:
</h3>
<p>
The computer code and data files described and made available on this web page
are distributed under
<a href = "../../txt/gnu_lgpl.txt">the GNU LGPL license.</a>
</p>
<h3 align = "center">
Languages:
</h3>
<p>
<b>JACOBI_POISSON_1D</b> is available in
<a href = "../../m_src/jacobi_poisson_1d/jacobi_poisson_1d.html">a MATLAB version</a>.
</p>
<h3 align = "center">
Related Data and Programs:
</h3>
<p>
<a href = "../../m_src/gauss_seidel_poisson_1d/gauss_seidel_poisson_1d.html">
GAUSS_SEIDEL_POISSON_1D</a>,
a MATLAB program which
demonstrates how the linear system for a discretized version of the
steady 1D Poisson equation can be solved by the Gauss-Seidel iteration.
</p>
<p>
<a href = "../../m_src/jacobi/jacobi.html">
JACOBI</a>,
a MATLAB library which
implements the Jacobi iteration for solving symmetric positive definite
systems of linear equations.
</p>
<h3 align = "center">
Source Code:
</h3>
<p>
<ul>
<li>
<a href = "jacobi_poisson_1d.m">jacobi_poisson_1d.m</a>,
the source code.
</li>
</ul>
</p>
<h3 align = "center">
Examples and Tests:
</h3>
<p>
<ul>
<li>
<a href = "jacobi_poisson_1d_output.txt">jacobi_poisson_1d_output.txt</a>,
the output file.
</li>
</ul>
</p>
<p>
You can go up one level to <a href = "../m_src.html">
the MATLAB source codes</a>.
</p>
<hr>
<i>
Last modified on 06 November 2011.
</i>
<!-- John Burkardt -->
</body>
</html>