-
Notifications
You must be signed in to change notification settings - Fork 57
/
ncm.html
146 lines (124 loc) · 3.04 KB
/
ncm.html
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<html>
<head>
<title>
NCM - Demo Programs from Cleve Moler's "Numerical Computing with MATLAB"
</title>
</head>
<body bgcolor="#EEEEEE" link="#CC0000" alink="#FF3300" vlink="#000055">
<h1 align = "center">
NCM <br>
Demo Programs from <br>
Cleve Moler's "Numerical Computing with MATLAB"
</h1>
<hr>
<p>
<b>NCM</b>,
MATLAB programs which
accompany Cleve Moler's textbook "Numerical Computing with MATLAB".
</p>
<p>
The textbook includes chapters on the following topics:
<ul>
<li>
Introduction to MATLAB;
</li>
<li>
Linear Equations;
</li>
<li>
Interpolation;
</li>
<li>
Zeros and Roots;
</li>
<li>
Least Squares;
</li>
<li>
Quadrature;
</li>
<li>
Ordinary Differential Equations;
</li>
<li>
Fourier Analysis;
</li>
<li>
Random Numbers;
</li>
<li>
Eigenvalues and Singular Values;
</li>
<li>
Partial Differential Equations;
</li>
</ul>
</p>
<h3 align = "center">
Licensing:
</h3>
<p>
Copyright by Cleve Moler, 2004, 2008.
</p>
<h3 align = "center">
Languages:
</h3>
<p>
<b>NCM</b> is available in
<a href = "../../m_src/ncm/ncm.html">a MATLAB version</a>
</p>
<h3 align = "center">
Author:
</h3>
<p>
Cleve Moler.
</p>
<h3 align = "center">
Reference:
</h3>
<p>
<ol>
<li>
Cleve Moler,<br>
Numerical Computing with MATLAB,<br>
SIAM, 2004,<br>
ISBN13: 978-0-898716-60-3,<br>
LC: QA297.M625,<br>
ebook: <a href = "http://www.mathworks.com/moler/chapters.html">
http://www.mathworks.com/moler/chapters.html</a>
</li>
<li>
Cleve Moler,<br>
Experiments with MATLAB,<br>
ebook: <a href = "http://www.mathworks.com/moler/exm/index.html">
http://www.mathworks.com/moler/exm/index.html</a>
</li>
</ol>
</p>
<h3 align = "center">
Source Code:
</h3>
<p>
<ul>
<li>
<a href = "pdegui.m">pdegui.m</a> demonstrates the solution of
model partial differential equations (PDE's)
using the finite difference method (FDM). The PDE's include
the Poisson equation, the time dependent heat equation, the
wave equation, and an eigenvalue problem. The domains include
the square, the L-region, the H-region, a disc, an annulus,
a heart, two "drums", and a hand.
</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 revised on 23 September 2013.
</i>
<!-- John Burkardt -->
</body>
</html>