Mercurial > hg > octave-lyh
annotate doc/interpreter/sparse.txi @ 17286:79d4b6089968
Fix isequal for sparse matrix (bug #37321)
* Sparse-op-defs.h (SPARSE_BASE_REDUCTION_OP): Fix typo in indexing
* __isequal__.m: Always return logical
* isequal.m, Sparse.cc: Add tests
author | Stefan Mahr <dac922@gmx.de> |
---|---|
date | Mon, 19 Aug 2013 11:19:41 +0200 |
parents | d6499c14021c |
children | bc924baa2c4e |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
14116
diff
changeset
|
1 @c Copyright (C) 2004-2012 David Bateman |
7018 | 2 @c |
3 @c This file is part of Octave. | |
4 @c | |
5 @c Octave is free software; you can redistribute it and/or modify it | |
6 @c under the terms of the GNU General Public License as published by the | |
7 @c Free Software Foundation; either version 3 of the License, or (at | |
8 @c your option) any later version. | |
9 @c | |
10 @c Octave is distributed in the hope that it will be useful, but WITHOUT | |
11 @c ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
12 @c FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
13 @c for more details. | |
14 @c | |
15 @c You should have received a copy of the GNU General Public License | |
16 @c along with Octave; see the file COPYING. If not, see | |
17 @c <http://www.gnu.org/licenses/>. | |
5164 | 18 |
5648 | 19 @ifhtml |
20 @set htmltex | |
21 @end ifhtml | |
22 @iftex | |
23 @set htmltex | |
24 @end iftex | |
25 | |
17160
f2a8592b8fbd
doc: Shorten some long subsection names in Manual.
Rik <rik@octave.org>
parents:
17101
diff
changeset
|
26 @node Sparse Matrices |
5164 | 27 @chapter Sparse Matrices |
28 | |
29 @menu | |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
30 * Basics:: Creation and Manipulation of Sparse Matrices |
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
31 * Sparse Linear Algebra:: Linear Algebra on Sparse Matrices |
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
32 * Iterative Techniques:: Iterative Techniques |
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
33 * Real Life Example:: Using Sparse Matrices |
5164 | 34 @end menu |
35 | |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
36 @node Basics |
17160
f2a8592b8fbd
doc: Shorten some long subsection names in Manual.
Rik <rik@octave.org>
parents:
17101
diff
changeset
|
37 @section Creation and Manipulation of Sparse Matrices |
5164 | 38 |
39 The size of mathematical problems that can be treated at any particular | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
40 time is generally limited by the available computing resources. Both, |
5164 | 41 the speed of the computer and its available memory place limitation on |
42 the problem size. | |
43 | |
5506 | 44 There are many classes of mathematical problems which give rise to |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
45 matrices, where a large number of the elements are zero. In this case |
5164 | 46 it makes sense to have a special matrix type to handle this class of |
47 problems where only the non-zero elements of the matrix are | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
48 stored. Not only does this reduce the amount of memory to store the |
5164 | 49 matrix, but it also means that operations on this type of matrix can |
50 take advantage of the a-priori knowledge of the positions of the | |
51 non-zero elements to accelerate their calculations. | |
52 | |
53 A matrix type that stores only the non-zero elements is generally called | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
54 sparse. It is the purpose of this document to discuss the basics of the |
5164 | 55 storage and creation of sparse matrices and the fundamental operations |
56 on them. | |
57 | |
58 @menu | |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
59 * Storage of Sparse Matrices:: |
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
60 * Creating Sparse Matrices:: |
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
61 * Information:: |
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
62 * Operators and Functions:: |
5164 | 63 @end menu |
64 | |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
65 @node Storage of Sparse Matrices |
5164 | 66 @subsection Storage of Sparse Matrices |
67 | |
68 It is not strictly speaking necessary for the user to understand how | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
69 sparse matrices are stored. However, such an understanding will help |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
70 to get an understanding of the size of sparse matrices. Understanding |
5164 | 71 the storage technique is also necessary for those users wishing to |
72 create their own oct-files. | |
73 | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
74 There are many different means of storing sparse matrix data. What all |
5648 | 75 of the methods have in common is that they attempt to reduce the complexity |
5164 | 76 and storage given a-priori knowledge of the particular class of problems |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
77 that will be solved. A good summary of the available techniques for storing |
10791
3140cb7a05a1
Add spellchecker scripts for Octave and run spellcheck of documentation
Rik <octave@nomad.inbox5.com>
parents:
10711
diff
changeset
|
78 sparse matrix is given by Saad @footnote{Y. Saad "SPARSKIT: A basic toolkit |
5164 | 79 for sparse matrix computation", 1994, |
6620 | 80 @url{http://www-users.cs.umn.edu/~saad/software/SPARSKIT/paper.ps}}. |
5164 | 81 With full matrices, knowledge of the point of an element of the matrix |
82 within the matrix is implied by its position in the computers memory. | |
83 However, this is not the case for sparse matrices, and so the positions | |
84 of the non-zero elements of the matrix must equally be stored. | |
85 | |
86 An obvious way to do this is by storing the elements of the matrix as | |
5506 | 87 triplets, with two elements being their position in the array |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
88 (rows and column) and the third being the data itself. This is conceptually |
5164 | 89 easy to grasp, but requires more storage than is strictly needed. |
90 | |
5648 | 91 The storage technique used within Octave is the compressed column |
16816
12005245b645
doc: Periodic grammarcheck of documentation.
Rik <rik@octave.org>
parents:
16792
diff
changeset
|
92 format. It is similar to the Yale format. |
16600
f2f5dd09e97d
doc: fix some minor sparse documentation oversights
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14138
diff
changeset
|
93 @footnote{@url{http://en.wikipedia.org/wiki/Sparse_matrix#Yale_format}} |
f2f5dd09e97d
doc: fix some minor sparse documentation oversights
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14138
diff
changeset
|
94 In this format the position of each element in a row and the data are |
16816
12005245b645
doc: Periodic grammarcheck of documentation.
Rik <rik@octave.org>
parents:
16792
diff
changeset
|
95 stored as previously. However, if we assume that all elements in the |
16600
f2f5dd09e97d
doc: fix some minor sparse documentation oversights
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14138
diff
changeset
|
96 same column are stored adjacent in the computers memory, then we only |
f2f5dd09e97d
doc: fix some minor sparse documentation oversights
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14138
diff
changeset
|
97 need to store information on the number of non-zero elements in each |
16816
12005245b645
doc: Periodic grammarcheck of documentation.
Rik <rik@octave.org>
parents:
16792
diff
changeset
|
98 column, rather than their positions. Thus assuming that the matrix has |
16600
f2f5dd09e97d
doc: fix some minor sparse documentation oversights
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14138
diff
changeset
|
99 more non-zero elements than there are columns in the matrix, we win in |
f2f5dd09e97d
doc: fix some minor sparse documentation oversights
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14138
diff
changeset
|
100 terms of the amount of memory used. |
5164 | 101 |
102 In fact, the column index contains one more element than the number of | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
103 columns, with the first element always being zero. The advantage of |
7001 | 104 this is a simplification in the code, in that there is no special case |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
105 for the first or last columns. A short example, demonstrating this in |
5164 | 106 C is. |
107 | |
108 @example | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
109 @group |
5164 | 110 for (j = 0; j < nc; j++) |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
111 for (i = cidx(j); i < cidx(j+1); i++) |
5648 | 112 printf ("non-zero element (%i,%i) is %d\n", |
10599
d0e0bb2ebebb
Remove tabs in .txi files causing problems with pdf formatting.
Rik <octave@nomad.inbox5.com>
parents:
9906
diff
changeset
|
113 ridx(i), j, data(i)); |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
114 @end group |
5164 | 115 @end example |
116 | |
117 A clear understanding might be had by considering an example of how the | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
118 above applies to an example matrix. Consider the matrix |
5164 | 119 |
120 @example | |
121 @group | |
122 1 2 0 0 | |
123 0 0 0 3 | |
124 0 0 0 4 | |
125 @end group | |
126 @end example | |
127 | |
128 The non-zero elements of this matrix are | |
129 | |
130 @example | |
131 @group | |
132 (1, 1) @result{} 1 | |
133 (1, 2) @result{} 2 | |
134 (2, 4) @result{} 3 | |
135 (3, 4) @result{} 4 | |
136 @end group | |
137 @end example | |
138 | |
139 This will be stored as three vectors @var{cidx}, @var{ridx} and @var{data}, | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
140 representing the column indexing, row indexing and data respectively. The |
5164 | 141 contents of these three vectors for the above matrix will be |
142 | |
143 @example | |
144 @group | |
5506 | 145 @var{cidx} = [0, 1, 2, 2, 4] |
5164 | 146 @var{ridx} = [0, 0, 1, 2] |
147 @var{data} = [1, 2, 3, 4] | |
148 @end group | |
149 @end example | |
150 | |
151 Note that this is the representation of these elements with the first row | |
5648 | 152 and column assumed to start at zero, while in Octave itself the row and |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
153 column indexing starts at one. Thus the number of elements in the |
5164 | 154 @var{i}-th column is given by @code{@var{cidx} (@var{i} + 1) - |
155 @var{cidx} (@var{i})}. | |
156 | |
5648 | 157 Although Octave uses a compressed column format, it should be noted |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
158 that compressed row formats are equally possible. However, in the |
5648 | 159 context of mixed operations between mixed sparse and dense matrices, |
160 it makes sense that the elements of the sparse matrices are in the | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
161 same order as the dense matrices. Octave stores dense matrices in |
5648 | 162 column major ordering, and so sparse matrices are equally stored in |
163 this manner. | |
5164 | 164 |
5324 | 165 A further constraint on the sparse matrix storage used by Octave is that |
5164 | 166 all elements in the rows are stored in increasing order of their row |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
167 index, which makes certain operations faster. However, it imposes |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
168 the need to sort the elements on the creation of sparse matrices. Having |
7001 | 169 disordered elements is potentially an advantage in that it makes operations |
5164 | 170 such as concatenating two sparse matrices together easier and faster, however |
171 it adds complexity and speed problems elsewhere. | |
172 | |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
173 @node Creating Sparse Matrices |
5164 | 174 @subsection Creating Sparse Matrices |
175 | |
176 There are several means to create sparse matrix. | |
177 | |
178 @table @asis | |
179 @item Returned from a function | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
180 There are many functions that directly return sparse matrices. These include |
7515
f3c00dc0912b
Eliminate the rest of the dispatched sparse functions
David Bateman <dbateman@free.fr>
parents:
7505
diff
changeset
|
181 @dfn{speye}, @dfn{sprand}, @dfn{diag}, etc. |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
182 |
5164 | 183 @item Constructed from matrices or vectors |
184 The function @dfn{sparse} allows a sparse matrix to be constructed from | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
185 three vectors representing the row, column and data. Alternatively, the |
5164 | 186 function @dfn{spconvert} uses a three column matrix format to allow easy |
187 importation of data from elsewhere. | |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
188 |
5164 | 189 @item Created and then filled |
190 The function @dfn{sparse} or @dfn{spalloc} can be used to create an empty | |
191 matrix that is then filled by the user | |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
192 |
5164 | 193 @item From a user binary program |
194 The user can directly create the sparse matrix within an oct-file. | |
195 @end table | |
196 | |
197 There are several basic functions to return specific sparse | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
198 matrices. For example the sparse identity matrix, is a matrix that is |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
199 often needed. It therefore has its own function to create it as |
5164 | 200 @code{speye (@var{n})} or @code{speye (@var{r}, @var{c})}, which |
201 creates an @var{n}-by-@var{n} or @var{r}-by-@var{c} sparse identity | |
202 matrix. | |
203 | |
204 Another typical sparse matrix that is often needed is a random distribution | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
205 of random elements. The functions @dfn{sprand} and @dfn{sprandn} perform |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
206 this for uniform and normal random distributions of elements. They have exactly |
5506 | 207 the same calling convention, where @code{sprand (@var{r}, @var{c}, @var{d})}, |
208 creates an @var{r}-by-@var{c} sparse matrix with a density of filled | |
5164 | 209 elements of @var{d}. |
210 | |
7001 | 211 Other functions of interest that directly create sparse matrices, are |
7515
f3c00dc0912b
Eliminate the rest of the dispatched sparse functions
David Bateman <dbateman@free.fr>
parents:
7505
diff
changeset
|
212 @dfn{diag} or its generalization @dfn{spdiags}, that can take the |
5164 | 213 definition of the diagonals of the matrix and create the sparse matrix |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
214 that corresponds to this. For example, |
5164 | 215 |
216 @example | |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
217 s = diag (sparse (randn (1,n)), -1); |
5164 | 218 @end example |
219 | |
10846
a4f482e66b65
Grammarcheck more of the documentation.
Rik <octave@nomad.inbox5.com>
parents:
10828
diff
changeset
|
220 @noindent |
5164 | 221 creates a sparse (@var{n}+1)-by-(@var{n}+1) sparse matrix with a single |
222 diagonal defined. | |
223 | |
6620 | 224 @DOCSTRING(spdiags) |
225 | |
226 @DOCSTRING(speye) | |
227 | |
228 @DOCSTRING(spones) | |
229 | |
230 @DOCSTRING(sprand) | |
231 | |
232 @DOCSTRING(sprandn) | |
233 | |
234 @DOCSTRING(sprandsym) | |
235 | |
5164 | 236 The recommended way for the user to create a sparse matrix, is to create |
5648 | 237 two vectors containing the row and column index of the data and a third |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
238 vector of the same size containing the data to be stored. For example, |
5164 | 239 |
240 @example | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
241 @group |
6421 | 242 ri = ci = d = []; |
243 for j = 1:c | |
13198
0a1774f1a70d
Update example in sparse.txi to use new calling form of randperm
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
11593
diff
changeset
|
244 ri = [ri; randperm(r,n)']; |
6421 | 245 ci = [ci; j*ones(n,1)]; |
246 d = [d; rand(n,1)]; | |
247 endfor | |
248 s = sparse (ri, ci, d, r, c); | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
249 @end group |
5164 | 250 @end example |
251 | |
10846
a4f482e66b65
Grammarcheck more of the documentation.
Rik <octave@nomad.inbox5.com>
parents:
10828
diff
changeset
|
252 @noindent |
6421 | 253 creates an @var{r}-by-@var{c} sparse matrix with a random distribution |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
254 of @var{n} (<@var{r}) elements per column. The elements of the vectors |
6421 | 255 do not need to be sorted in any particular order as Octave will sort |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
256 them prior to storing the data. However, pre-sorting the data will |
6421 | 257 make the creation of the sparse matrix faster. |
5164 | 258 |
259 The function @dfn{spconvert} takes a three or four column real matrix. | |
260 The first two columns represent the row and column index respectively and | |
261 the third and four columns, the real and imaginary parts of the sparse | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
262 matrix. The matrix can contain zero elements and the elements can be |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
263 sorted in any order. Adding zero elements is a convenient way to define |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
264 the size of the sparse matrix. For example: |
5164 | 265 |
266 @example | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
267 @group |
5164 | 268 s = spconvert ([1 2 3 4; 1 3 4 4; 1 2 3 0]') |
269 @result{} Compressed Column Sparse (rows=4, cols=4, nnz=3) | |
270 (1 , 1) -> 1 | |
271 (2 , 3) -> 2 | |
272 (3 , 4) -> 3 | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
273 @end group |
5164 | 274 @end example |
275 | |
276 An example of creating and filling a matrix might be | |
277 | |
278 @example | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
279 @group |
5164 | 280 k = 5; |
281 nz = r * k; | |
282 s = spalloc (r, c, nz) | |
283 for j = 1:c | |
284 idx = randperm (r); | |
5648 | 285 s (:, j) = [zeros(r - k, 1); ... |
286 rand(k, 1)] (idx); | |
5164 | 287 endfor |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
288 @end group |
5164 | 289 @end example |
290 | |
5324 | 291 It should be noted, that due to the way that the Octave |
5164 | 292 assignment functions are written that the assignment will reallocate |
5506 | 293 the memory used by the sparse matrix at each iteration of the above loop. |
294 Therefore the @dfn{spalloc} function ignores the @var{nz} argument and | |
10791
3140cb7a05a1
Add spellchecker scripts for Octave and run spellcheck of documentation
Rik <octave@nomad.inbox5.com>
parents:
10711
diff
changeset
|
295 does not pre-assign the memory for the matrix. Therefore, it is vitally |
5648 | 296 important that code using to above structure should be vectorized |
297 as much as possible to minimize the number of assignments and reduce the | |
5164 | 298 number of memory allocations. |
299 | |
6620 | 300 @DOCSTRING(full) |
301 | |
302 @DOCSTRING(spalloc) | |
303 | |
304 @DOCSTRING(sparse) | |
305 | |
306 @DOCSTRING(spconvert) | |
307 | |
8106
8a42498edb30
Clarify doc for sparse function
David Bateman <dbateman@free.fr>
parents:
7681
diff
changeset
|
308 The above problem of memory reallocation can be avoided in |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
309 oct-files. However, the construction of a sparse matrix from an oct-file |
17101
e7a059a9a644
doc: Use XREF as anchor prefix in documentation for clearer results in Info viewer.
Rik <rik@octave.org>
parents:
16867
diff
changeset
|
310 is more complex than can be discussed here. @xref{External Code Interface}, |
17178
d6499c14021c
doc: Periodic grammarcheck of documentation.
Rik <rik@octave.org>
parents:
17160
diff
changeset
|
311 for a full description of the techniques involved. |
5164 | 312 |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
313 @node Information |
17160
f2a8592b8fbd
doc: Shorten some long subsection names in Manual.
Rik <rik@octave.org>
parents:
17101
diff
changeset
|
314 @subsection Finding Information about Sparse Matrices |
5648 | 315 |
316 There are a number of functions that allow information concerning | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
317 sparse matrices to be obtained. The most basic of these is |
5648 | 318 @dfn{issparse} that identifies whether a particular Octave object is |
319 in fact a sparse matrix. | |
320 | |
321 Another very basic function is @dfn{nnz} that returns the number of | |
322 non-zero entries there are in a sparse matrix, while the function | |
323 @dfn{nzmax} returns the amount of storage allocated to the sparse | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
324 matrix. Note that Octave tends to crop unused memory at the first |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
325 opportunity for sparse objects. There are some cases of user created |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
326 sparse objects where the value returned by @dfn{nzmax} will not be |
5648 | 327 the same as @dfn{nnz}, but in general they will give the same |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
328 result. The function @dfn{spstats} returns some basic statistics on |
5648 | 329 the columns of a sparse matrix including the number of elements, the |
330 mean and the variance of each column. | |
331 | |
6620 | 332 @DOCSTRING(issparse) |
333 | |
334 @DOCSTRING(nnz) | |
335 | |
336 @DOCSTRING(nonzeros) | |
337 | |
338 @DOCSTRING(nzmax) | |
339 | |
340 @DOCSTRING(spstats) | |
341 | |
5648 | 342 When solving linear equations involving sparse matrices Octave |
343 determines the means to solve the equation based on the type of the | |
17101
e7a059a9a644
doc: Use XREF as anchor prefix in documentation for clearer results in Info viewer.
Rik <rik@octave.org>
parents:
16867
diff
changeset
|
344 matrix (@pxref{Sparse Linear Algebra}). Octave probes the |
5648 | 345 matrix type when the div (/) or ldiv (\) operator is first used with |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
346 the matrix and then caches the type. However the @dfn{matrix_type} |
5648 | 347 function can be used to determine the type of the sparse matrix prior |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
348 to use of the div or ldiv operators. For example, |
5648 | 349 |
350 @example | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
351 @group |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
352 a = tril (sprandn (1024, 1024, 0.02), -1) ... |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
353 + speye (1024); |
5648 | 354 matrix_type (a); |
355 ans = Lower | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
356 @end group |
5648 | 357 @end example |
358 | |
10846
a4f482e66b65
Grammarcheck more of the documentation.
Rik <octave@nomad.inbox5.com>
parents:
10828
diff
changeset
|
359 @noindent |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
360 shows that Octave correctly determines the matrix type for lower |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
361 triangular matrices. @dfn{matrix_type} can also be used to force |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
362 the type of a matrix to be a particular type. For example: |
5648 | 363 |
364 @example | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
365 @group |
5648 | 366 a = matrix_type (tril (sprandn (1024, ... |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
367 1024, 0.02), -1) + speye (1024), "Lower"); |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
368 @end group |
5648 | 369 @end example |
370 | |
371 This allows the cost of determining the matrix type to be | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
372 avoided. However, incorrectly defining the matrix type will result in |
5648 | 373 incorrect results from solutions of linear equations, and so it is |
374 entirely the responsibility of the user to correctly identify the | |
375 matrix type | |
376 | |
377 There are several graphical means of finding out information about | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
378 sparse matrices. The first is the @dfn{spy} command, which displays |
5648 | 379 the structure of the non-zero elements of the |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
380 matrix. @xref{fig:spmatrix}, for an example of the use of |
5704 | 381 @dfn{spy}. More advanced graphical information can be obtained with the |
5648 | 382 @dfn{treeplot}, @dfn{etreeplot} and @dfn{gplot} commands. |
383 | |
384 @float Figure,fig:spmatrix | |
9088
77e71f3da3d6
Fix documentation image printing under new development code
Rik <rdrider0-list@yahoo.com>
parents:
9066
diff
changeset
|
385 @center @image{spmatrix,4in} |
5648 | 386 @caption{Structure of simple sparse matrix.} |
387 @end float | |
388 | |
389 One use of sparse matrices is in graph theory, where the | |
7001 | 390 interconnections between nodes are represented as an adjacency |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
391 matrix. That is, if the i-th node in a graph is connected to the j-th |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
392 node. Then the ij-th node (and in the case of undirected graphs the |
16826
a4969508008e
doc: Periodic spellcheck of the documentation.
Rik <rik@octave.org>
parents:
16816
diff
changeset
|
393 @nospell{ji-th} node) of the sparse adjacency matrix is non-zero. If each node |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
394 is then associated with a set of coordinates, then the @dfn{gplot} |
5648 | 395 command can be used to graphically display the interconnections |
396 between nodes. | |
397 | |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
398 As a trivial example of the use of @dfn{gplot} consider the example, |
5648 | 399 |
400 @example | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
401 @group |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
402 A = sparse ([2,6,1,3,2,4,3,5,4,6,1,5], |
5648 | 403 [1,1,2,2,3,3,4,4,5,5,6,6],1,6,6); |
404 xy = [0,4,8,6,4,2;5,0,5,7,5,7]'; | |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
405 gplot (A,xy) |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
406 @end group |
5648 | 407 @end example |
408 | |
10846
a4f482e66b65
Grammarcheck more of the documentation.
Rik <octave@nomad.inbox5.com>
parents:
10828
diff
changeset
|
409 @noindent |
5648 | 410 which creates an adjacency matrix @code{A} where node 1 is connected |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
411 to nodes 2 and 6, node 2 with nodes 1 and 3, etc. The coordinates of |
5648 | 412 the nodes are given in the n-by-2 matrix @code{xy}. |
413 @ifset htmltex | |
414 @xref{fig:gplot}. | |
415 | |
416 @float Figure,fig:gplot | |
9088
77e71f3da3d6
Fix documentation image printing under new development code
Rik <rdrider0-list@yahoo.com>
parents:
9066
diff
changeset
|
417 @center @image{gplot,4in} |
5648 | 418 @caption{Simple use of the @dfn{gplot} command.} |
419 @end float | |
420 @end ifset | |
421 | |
11593
1577c6f80926
Use non-breaking spaces between certain adjectives and their nouns in docstrings.
Rik <octave@nomad.inbox5.com>
parents:
11573
diff
changeset
|
422 The dependencies between the nodes of a Cholesky@tie{}factorization can be |
5648 | 423 calculated in linear time without explicitly needing to calculate the |
11593
1577c6f80926
Use non-breaking spaces between certain adjectives and their nouns in docstrings.
Rik <octave@nomad.inbox5.com>
parents:
11573
diff
changeset
|
424 Cholesky@tie{}factorization by the @code{etree} command. This command |
5648 | 425 returns the elimination tree of the matrix and can be displayed |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
426 graphically by the command @code{treeplot (etree (A))} if @code{A} is |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
427 symmetric or @code{treeplot (etree (A+A'))} otherwise. |
5648 | 428 |
6620 | 429 @DOCSTRING(spy) |
430 | |
431 @DOCSTRING(etree) | |
432 | |
433 @DOCSTRING(etreeplot) | |
434 | |
435 @DOCSTRING(gplot) | |
436 | |
437 @DOCSTRING(treeplot) | |
438 | |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
439 @DOCSTRING(treelayout) |
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
440 |
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
441 @node Operators and Functions |
5164 | 442 @subsection Basic Operators and Functions on Sparse Matrices |
443 | |
444 @menu | |
17160
f2a8592b8fbd
doc: Shorten some long subsection names in Manual.
Rik <rik@octave.org>
parents:
17101
diff
changeset
|
445 * Sparse Functions:: |
f2a8592b8fbd
doc: Shorten some long subsection names in Manual.
Rik <rik@octave.org>
parents:
17101
diff
changeset
|
446 * Return Types of Operators and Functions:: |
f2a8592b8fbd
doc: Shorten some long subsection names in Manual.
Rik <rik@octave.org>
parents:
17101
diff
changeset
|
447 * Mathematical Considerations:: |
5164 | 448 @end menu |
449 | |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
450 @node Sparse Functions |
5648 | 451 @subsubsection Sparse Functions |
452 | |
11396
7b563cf94d8d
Remove documentation on deprecated function dispatch
Rik <octave@nomad.inbox5.com>
parents:
11392
diff
changeset
|
453 Many Octave functions have been overloaded to work with either sparse or full |
7b563cf94d8d
Remove documentation on deprecated function dispatch
Rik <octave@nomad.inbox5.com>
parents:
11392
diff
changeset
|
454 matrices. There is no difference in calling convention when using an |
7b563cf94d8d
Remove documentation on deprecated function dispatch
Rik <octave@nomad.inbox5.com>
parents:
11392
diff
changeset
|
455 overloaded function with a sparse matrix, however, there is also no access to |
7b563cf94d8d
Remove documentation on deprecated function dispatch
Rik <octave@nomad.inbox5.com>
parents:
11392
diff
changeset
|
456 potentially sparse-specific features. At any time the sparse matrix specific |
7b563cf94d8d
Remove documentation on deprecated function dispatch
Rik <octave@nomad.inbox5.com>
parents:
11392
diff
changeset
|
457 version of a function can be used by explicitly calling its function name. |
5648 | 458 |
11396
7b563cf94d8d
Remove documentation on deprecated function dispatch
Rik <octave@nomad.inbox5.com>
parents:
11392
diff
changeset
|
459 The table below lists all of the sparse functions of Octave. Note that the |
7b563cf94d8d
Remove documentation on deprecated function dispatch
Rik <octave@nomad.inbox5.com>
parents:
11392
diff
changeset
|
460 names of the specific sparse forms of the functions are typically the same as |
7b563cf94d8d
Remove documentation on deprecated function dispatch
Rik <octave@nomad.inbox5.com>
parents:
11392
diff
changeset
|
461 the general versions with a @dfn{sp} prefix. In the table below, and in the |
7b563cf94d8d
Remove documentation on deprecated function dispatch
Rik <octave@nomad.inbox5.com>
parents:
11392
diff
changeset
|
462 rest of this article, the specific sparse versions of functions are used. |
6620 | 463 |
464 @c Table includes in comments the missing sparse functions | |
5648 | 465 |
466 @table @asis | |
467 @item Generate sparse matrices: | |
468 @dfn{spalloc}, @dfn{spdiags}, @dfn{speye}, @dfn{sprand}, | |
469 @dfn{sprandn}, @dfn{sprandsym} | |
470 | |
471 @item Sparse matrix conversion: | |
7505
f5005d9510f4
Remove dispatched sparse functions and treat in the generic versions of the functions
David Bateman <dbateman@free.fr>
parents:
7455
diff
changeset
|
472 @dfn{full}, @dfn{sparse}, @dfn{spconvert} |
5648 | 473 |
474 @item Manipulate sparse matrices | |
475 @dfn{issparse}, @dfn{nnz}, @dfn{nonzeros}, @dfn{nzmax}, | |
6620 | 476 @dfn{spfun}, @dfn{spones}, @dfn{spy} |
5164 | 477 |
5648 | 478 @item Graph Theory: |
479 @dfn{etree}, @dfn{etreeplot}, @dfn{gplot}, | |
6620 | 480 @dfn{treeplot} |
481 @c @dfn{treelayout} | |
5648 | 482 |
483 @item Sparse matrix reordering: | |
7619 | 484 @dfn{amd}, @dfn{ccolamd}, @dfn{colamd}, @dfn{colperm}, @dfn{csymamd}, |
6620 | 485 @dfn{dmperm}, @dfn{symamd}, @dfn{randperm}, @dfn{symrcm} |
5648 | 486 |
487 @item Linear algebra: | |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8347
diff
changeset
|
488 @dfn{condest}, @dfn{eigs}, @dfn{matrix_type}, @dfn{normest}, @dfn{sprank}, |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8347
diff
changeset
|
489 @dfn{spaugment}, @dfn{svds} |
5648 | 490 |
491 @item Iterative techniques: | |
6620 | 492 @dfn{luinc}, @dfn{pcg}, @dfn{pcr} |
493 @c @dfn{bicg}, @dfn{bicgstab}, @dfn{cholinc}, @dfn{cgs}, @dfn{gmres}, | |
494 @c @dfn{lsqr}, @dfn{minres}, @dfn{qmr}, @dfn{symmlq} | |
5648 | 495 |
496 @item Miscellaneous: | |
7515
f3c00dc0912b
Eliminate the rest of the dispatched sparse functions
David Bateman <dbateman@free.fr>
parents:
7505
diff
changeset
|
497 @dfn{spparms}, @dfn{symbfact}, @dfn{spstats} |
5648 | 498 @end table |
499 | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
500 In addition all of the standard Octave mapper functions (i.e., basic |
9088
77e71f3da3d6
Fix documentation image printing under new development code
Rik <rdrider0-list@yahoo.com>
parents:
9066
diff
changeset
|
501 math functions that take a single argument) such as @dfn{abs}, etc. |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
502 can accept sparse matrices. The reader is referred to the documentation |
5648 | 503 supplied with these functions within Octave itself for further |
504 details. | |
5164 | 505 |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
506 @node Return Types of Operators and Functions |
17160
f2a8592b8fbd
doc: Shorten some long subsection names in Manual.
Rik <rik@octave.org>
parents:
17101
diff
changeset
|
507 @subsubsection Return Types of Operators and Functions |
5164 | 508 |
5506 | 509 The two basic reasons to use sparse matrices are to reduce the memory |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
510 usage and to not have to do calculations on zero elements. The two are |
5164 | 511 closely related in that the computation time on a sparse matrix operator |
5506 | 512 or function is roughly linear with the number of non-zero elements. |
5164 | 513 |
514 Therefore, there is a certain density of non-zero elements of a matrix | |
515 where it no longer makes sense to store it as a sparse matrix, but rather | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
516 as a full matrix. For this reason operators and functions that have a |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
517 high probability of returning a full matrix will always return one. For |
5164 | 518 example adding a scalar constant to a sparse matrix will almost always |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
519 make it a full matrix, and so the example, |
5164 | 520 |
521 @example | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
522 @group |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
523 speye (3) + 0 |
5164 | 524 @result{} 1 0 0 |
525 0 1 0 | |
526 0 0 1 | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
527 @end group |
5164 | 528 @end example |
529 | |
10846
a4f482e66b65
Grammarcheck more of the documentation.
Rik <octave@nomad.inbox5.com>
parents:
10828
diff
changeset
|
530 @noindent |
7330 | 531 returns a full matrix as can be seen. |
532 | |
533 | |
534 Additionally, if @code{sparse_auto_mutate} is true, all sparse functions | |
535 test the amount of memory occupied by the sparse matrix to see if the | |
536 amount of storage used is larger than the amount used by the full | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
537 equivalent. Therefore @code{speye (2) * 1} will return a full matrix as |
5164 | 538 the memory used is smaller for the full version than the sparse version. |
539 | |
540 As all of the mixed operators and functions between full and sparse | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
541 matrices exist, in general this does not cause any problems. However, |
5164 | 542 one area where it does cause a problem is where a sparse matrix is |
543 promoted to a full matrix, where subsequent operations would resparsify | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
544 the matrix. Such cases are rare, but can be artificially created, for |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
545 example @code{(fliplr (speye (3)) + speye (3)) - speye (3)} gives a full |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
546 matrix when it should give a sparse one. In general, where such cases |
5164 | 547 occur, they impose only a small memory penalty. |
548 | |
5648 | 549 There is however one known case where this behavior of Octave's |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
550 sparse matrices will cause a problem. That is in the handling of the |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
551 @dfn{diag} function. Whether @dfn{diag} returns a sparse or full matrix |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
552 depending on the type of its input arguments. So |
5164 | 553 |
554 @example | |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
555 a = diag (sparse ([1,2,3]), -1); |
5164 | 556 @end example |
557 | |
10846
a4f482e66b65
Grammarcheck more of the documentation.
Rik <octave@nomad.inbox5.com>
parents:
10828
diff
changeset
|
558 @noindent |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
559 should return a sparse matrix. To ensure this actually happens, the |
5164 | 560 @dfn{sparse} function, and other functions based on it like @dfn{speye}, |
561 always returns a sparse matrix, even if the memory used will be larger | |
562 than its full representation. | |
563 | |
7330 | 564 @DOCSTRING(sparse_auto_mutate) |
565 | |
566 Note that the @code{sparse_auto_mutate} option is incompatible with | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
567 @sc{matlab}, and so it is off by default. |
7330 | 568 |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
569 @node Mathematical Considerations |
5164 | 570 @subsubsection Mathematical Considerations |
571 | |
572 The attempt has been made to make sparse matrices behave in exactly the | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
573 same manner as there full counterparts. However, there are certain differences |
5164 | 574 and especially differences with other products sparse implementations. |
575 | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
576 Firstly, the "./" and ".^" operators must be used with care. Consider what |
5164 | 577 the examples |
578 | |
579 @example | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
580 @group |
5164 | 581 s = speye (4); |
582 a1 = s .^ 2; | |
583 a2 = s .^ s; | |
584 a3 = s .^ -2; | |
585 a4 = s ./ 2; | |
586 a5 = 2 ./ s; | |
587 a6 = s ./ s; | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
588 @end group |
5164 | 589 @end example |
590 | |
10846
a4f482e66b65
Grammarcheck more of the documentation.
Rik <octave@nomad.inbox5.com>
parents:
10828
diff
changeset
|
591 @noindent |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
592 will give. The first example of @var{s} raised to the power of 2 causes |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
593 no problems. However @var{s} raised element-wise to itself involves a |
6431 | 594 large number of terms @code{0 .^ 0} which is 1. There @code{@var{s} .^ |
5164 | 595 @var{s}} is a full matrix. |
596 | |
8347
fa78cb8d8a5c
corrections for typos
Brian Gough<bjg@network-theory.co.uk>
parents:
8286
diff
changeset
|
597 Likewise @code{@var{s} .^ -2} involves terms like @code{0 .^ -2} which |
5164 | 598 is infinity, and so @code{@var{s} .^ -2} is equally a full matrix. |
599 | |
600 For the "./" operator @code{@var{s} ./ 2} has no problems, but | |
601 @code{2 ./ @var{s}} involves a large number of infinity terms as well | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
602 and is equally a full matrix. The case of @code{@var{s} ./ @var{s}} |
5164 | 603 involves terms like @code{0 ./ 0} which is a @code{NaN} and so this |
604 is equally a full matrix with the zero elements of @var{s} filled with | |
605 @code{NaN} values. | |
606 | |
5648 | 607 The above behavior is consistent with full matrices, but is not |
5164 | 608 consistent with sparse implementations in other products. |
609 | |
610 A particular problem of sparse matrices comes about due to the fact that | |
611 as the zeros are not stored, the sign-bit of these zeros is equally not | |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
612 stored. In certain cases the sign-bit of zero is important. For example: |
5164 | 613 |
614 @example | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
615 @group |
5164 | 616 a = 0 ./ [-1, 1; 1, -1]; |
617 b = 1 ./ a | |
618 @result{} -Inf Inf | |
619 Inf -Inf | |
620 c = 1 ./ sparse (a) | |
621 @result{} Inf Inf | |
622 Inf Inf | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
623 @end group |
5164 | 624 @end example |
625 | |
5648 | 626 To correct this behavior would mean that zero elements with a negative |
5164 | 627 sign-bit would need to be stored in the matrix to ensure that their |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
628 sign-bit was respected. This is not done at this time, for reasons of |
6750 | 629 efficiency, and so the user is warned that calculations where the sign-bit |
5164 | 630 of zero is important must not be done using sparse matrices. |
631 | |
5648 | 632 In general any function or operator used on a sparse matrix will |
633 result in a sparse matrix with the same or a larger number of non-zero | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
634 elements than the original matrix. This is particularly true for the |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
635 important case of sparse matrix factorizations. The usual way to |
5648 | 636 address this is to reorder the matrix, such that its factorization is |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
637 sparser than the factorization of the original matrix. That is the |
5648 | 638 factorization of @code{L * U = P * S * Q} has sparser terms @code{L} |
639 and @code{U} than the equivalent factorization @code{L * U = S}. | |
640 | |
641 Several functions are available to reorder depending on the type of the | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
642 matrix to be factorized. If the matrix is symmetric positive-definite, |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
643 then @dfn{symamd} or @dfn{csymamd} should be used. Otherwise |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
644 @dfn{amd}, @dfn{colamd} or @dfn{ccolamd} should be used. For completeness |
5648 | 645 the reordering functions @dfn{colperm} and @dfn{randperm} are |
646 also available. | |
647 | |
8829 | 648 @xref{fig:simplematrix}, for an example of the structure of a simple |
5648 | 649 positive definite matrix. |
5506 | 650 |
5648 | 651 @float Figure,fig:simplematrix |
9088
77e71f3da3d6
Fix documentation image printing under new development code
Rik <rdrider0-list@yahoo.com>
parents:
9066
diff
changeset
|
652 @center @image{spmatrix,4in} |
5648 | 653 @caption{Structure of simple sparse matrix.} |
654 @end float | |
5506 | 655 |
11593
1577c6f80926
Use non-breaking spaces between certain adjectives and their nouns in docstrings.
Rik <octave@nomad.inbox5.com>
parents:
11573
diff
changeset
|
656 The standard Cholesky@tie{}factorization of this matrix can be |
5648 | 657 obtained by the same command that would be used for a full |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
658 matrix. This can be visualized with the command |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
659 @code{r = chol (A); spy (r);}. |
5652 | 660 @xref{fig:simplechol}. |
661 The original matrix had | |
5648 | 662 @ifinfo |
663 @ifnothtml | |
664 43 | |
665 @end ifnothtml | |
666 @end ifinfo | |
667 @ifset htmltex | |
668 598 | |
669 @end ifset | |
11593
1577c6f80926
Use non-breaking spaces between certain adjectives and their nouns in docstrings.
Rik <octave@nomad.inbox5.com>
parents:
11573
diff
changeset
|
670 non-zero terms, while this Cholesky@tie{}factorization has |
5648 | 671 @ifinfo |
672 @ifnothtml | |
673 71, | |
674 @end ifnothtml | |
675 @end ifinfo | |
676 @ifset htmltex | |
677 10200, | |
678 @end ifset | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
679 with only half of the symmetric matrix being stored. This |
5648 | 680 is a significant level of fill in, and although not an issue |
681 for such a small test case, can represents a large overhead | |
682 in working with other sparse matrices. | |
5164 | 683 |
5648 | 684 The appropriate sparsity preserving permutation of the original |
685 matrix is given by @dfn{symamd} and the factorization using this | |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
686 reordering can be visualized using the command @code{q = symamd (A); |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
687 r = chol (A(q,q)); spy (r)}. This gives |
5648 | 688 @ifinfo |
689 @ifnothtml | |
690 29 | |
691 @end ifnothtml | |
692 @end ifinfo | |
693 @ifset htmltex | |
694 399 | |
695 @end ifset | |
696 non-zero terms which is a significant improvement. | |
5164 | 697 |
11593
1577c6f80926
Use non-breaking spaces between certain adjectives and their nouns in docstrings.
Rik <octave@nomad.inbox5.com>
parents:
11573
diff
changeset
|
698 The Cholesky@tie{}factorization itself can be used to determine the |
5648 | 699 appropriate sparsity preserving reordering of the matrix during the |
700 factorization, In that case this might be obtained with three return | |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
701 arguments as @code{[r, p, q] = chol (A); spy (r)}. |
5164 | 702 |
5648 | 703 @float Figure,fig:simplechol |
9088
77e71f3da3d6
Fix documentation image printing under new development code
Rik <rdrider0-list@yahoo.com>
parents:
9066
diff
changeset
|
704 @center @image{spchol,4in} |
16826
a4969508008e
doc: Periodic spellcheck of the documentation.
Rik <rik@octave.org>
parents:
16816
diff
changeset
|
705 @caption{Structure of the unpermuted Cholesky@tie{}factorization of the above matrix.} |
5648 | 706 @end float |
5164 | 707 |
5648 | 708 @float Figure,fig:simplecholperm |
9088
77e71f3da3d6
Fix documentation image printing under new development code
Rik <rdrider0-list@yahoo.com>
parents:
9066
diff
changeset
|
709 @center @image{spcholperm,4in} |
11593
1577c6f80926
Use non-breaking spaces between certain adjectives and their nouns in docstrings.
Rik <octave@nomad.inbox5.com>
parents:
11573
diff
changeset
|
710 @caption{Structure of the permuted Cholesky@tie{}factorization of the above matrix.} |
5648 | 711 @end float |
5164 | 712 |
5648 | 713 In the case of an asymmetric matrix, the appropriate sparsity |
714 preserving permutation is @dfn{colamd} and the factorization using | |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
715 this reordering can be visualized using the command |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
716 @code{q = colamd (A); [l, u, p] = lu (A(:,q)); spy (l+u)}. |
5164 | 717 |
5648 | 718 Finally, Octave implicitly reorders the matrix when using the div (/) |
719 and ldiv (\) operators, and so no the user does not need to explicitly | |
720 reorder the matrix to maximize performance. | |
721 | |
7619 | 722 @DOCSTRING(amd) |
723 | |
6620 | 724 @DOCSTRING(ccolamd) |
725 | |
726 @DOCSTRING(colamd) | |
727 | |
728 @DOCSTRING(colperm) | |
729 | |
730 @DOCSTRING(csymamd) | |
731 | |
732 @DOCSTRING(dmperm) | |
733 | |
734 @DOCSTRING(symamd) | |
735 | |
736 @DOCSTRING(symrcm) | |
737 | |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
738 @node Sparse Linear Algebra |
5164 | 739 @section Linear Algebra on Sparse Matrices |
740 | |
8488
cdb4788879b3
[docs] poly-morphic => polymorphic
Brian Gough <bjg@gnu.org>
parents:
8417
diff
changeset
|
741 Octave includes a polymorphic solver for sparse matrices, where |
5164 | 742 the exact solver used to factorize the matrix, depends on the properties |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
743 of the sparse matrix itself. Generally, the cost of determining the matrix type |
5322 | 744 is small relative to the cost of factorizing the matrix itself, but in any |
745 case the matrix type is cached once it is calculated, so that it is not | |
746 re-determined each time it is used in a linear equation. | |
5164 | 747 |
748 The selection tree for how the linear equation is solve is | |
749 | |
750 @enumerate 1 | |
5648 | 751 @item If the matrix is diagonal, solve directly and goto 8 |
5164 | 752 |
753 @item If the matrix is a permuted diagonal, solve directly taking into | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
754 account the permutations. Goto 8 |
5164 | 755 |
5648 | 756 @item If the matrix is square, banded and if the band density is less |
757 than that given by @code{spparms ("bandden")} continue, else goto 4. | |
5164 | 758 |
759 @enumerate a | |
760 @item If the matrix is tridiagonal and the right-hand side is not sparse | |
5648 | 761 continue, else goto 3b. |
5164 | 762 |
763 @enumerate | |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
764 @item If the matrix is Hermitian, with a positive real diagonal, attempt |
11593
1577c6f80926
Use non-breaking spaces between certain adjectives and their nouns in docstrings.
Rik <octave@nomad.inbox5.com>
parents:
11573
diff
changeset
|
765 Cholesky@tie{}factorization using @sc{lapack} xPTSV. |
5164 | 766 |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
767 @item If the above failed or the matrix is not Hermitian with a positive |
5164 | 768 real diagonal use Gaussian elimination with pivoting using |
9088
77e71f3da3d6
Fix documentation image printing under new development code
Rik <rdrider0-list@yahoo.com>
parents:
9066
diff
changeset
|
769 @sc{lapack} xGTSV, and goto 8. |
5164 | 770 @end enumerate |
771 | |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
772 @item If the matrix is Hermitian with a positive real diagonal, attempt |
11593
1577c6f80926
Use non-breaking spaces between certain adjectives and their nouns in docstrings.
Rik <octave@nomad.inbox5.com>
parents:
11573
diff
changeset
|
773 Cholesky@tie{}factorization using @sc{lapack} xPBTRF. |
5164 | 774 |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
775 @item if the above failed or the matrix is not Hermitian with a positive |
5164 | 776 real diagonal use Gaussian elimination with pivoting using |
9088
77e71f3da3d6
Fix documentation image printing under new development code
Rik <rdrider0-list@yahoo.com>
parents:
9066
diff
changeset
|
777 @sc{lapack} xGBTRF, and goto 8. |
5164 | 778 @end enumerate |
779 | |
780 @item If the matrix is upper or lower triangular perform a sparse forward | |
5648 | 781 or backward substitution, and goto 8 |
5164 | 782 |
11573
6f8ffe2c6f76
Grammarcheck txi files for 3.4 release.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
783 @item If the matrix is an upper triangular matrix with column permutations |
5322 | 784 or lower triangular matrix with row permutations, perform a sparse forward |
5648 | 785 or backward substitution, and goto 8 |
5164 | 786 |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
787 @item If the matrix is square, Hermitian with a real positive diagonal, attempt |
11593
1577c6f80926
Use non-breaking spaces between certain adjectives and their nouns in docstrings.
Rik <octave@nomad.inbox5.com>
parents:
11573
diff
changeset
|
788 sparse Cholesky@tie{}factorization using @sc{cholmod}. |
5164 | 789 |
11593
1577c6f80926
Use non-breaking spaces between certain adjectives and their nouns in docstrings.
Rik <octave@nomad.inbox5.com>
parents:
11573
diff
changeset
|
790 @item If the sparse Cholesky@tie{}factorization failed or the matrix is not |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
791 Hermitian with a real positive diagonal, and the matrix is square, factorize |
10711
fbd7843974fa
Periodic grammar check of documentation files to ensure common format.
Rik <octave@nomad.inbox5.com>
parents:
10668
diff
changeset
|
792 using @sc{umfpack}. |
5164 | 793 |
794 @item If the matrix is not square, or any of the previous solvers flags | |
5648 | 795 a singular or near singular matrix, find a minimum norm solution using |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
796 @sc{cxsparse}@footnote{The @sc{cholmod}, @sc{umfpack} and @sc{cxsparse} packages were |
7096 | 797 written by Tim Davis and are available at |
16792
b157ba28f123
doc: Use Texinfo @url command consistently throughout documentation.
Rik <rik@octave.org>
parents:
16601
diff
changeset
|
798 @url{http://www.cise.ufl.edu/research/sparse/}}. |
5164 | 799 @end enumerate |
800 | |
16600
f2f5dd09e97d
doc: fix some minor sparse documentation oversights
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14138
diff
changeset
|
801 The band density is defined as the number of non-zero values in the band |
16816
12005245b645
doc: Periodic grammarcheck of documentation.
Rik <rik@octave.org>
parents:
16792
diff
changeset
|
802 divided by the total number of values in the full band. The banded |
16600
f2f5dd09e97d
doc: fix some minor sparse documentation oversights
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14138
diff
changeset
|
803 matrix solvers can be entirely disabled by using @dfn{spparms} to set |
f2f5dd09e97d
doc: fix some minor sparse documentation oversights
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14138
diff
changeset
|
804 @code{bandden} to 1 (i.e., @code{spparms ("bandden", 1)}). |
5164 | 805 |
16600
f2f5dd09e97d
doc: fix some minor sparse documentation oversights
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14138
diff
changeset
|
806 The QR@tie{}solver factorizes the problem with a Dulmage-Mendelsohn |
f2f5dd09e97d
doc: fix some minor sparse documentation oversights
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14138
diff
changeset
|
807 decomposition, to separate the problem into blocks that can be treated |
f2f5dd09e97d
doc: fix some minor sparse documentation oversights
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14138
diff
changeset
|
808 as over-determined, multiple well determined blocks, and a final |
16816
12005245b645
doc: Periodic grammarcheck of documentation.
Rik <rik@octave.org>
parents:
16792
diff
changeset
|
809 over-determined block. For matrices with blocks of strongly connected |
16600
f2f5dd09e97d
doc: fix some minor sparse documentation oversights
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14138
diff
changeset
|
810 nodes this is a big win as LU@tie{}decomposition can be used for many |
16816
12005245b645
doc: Periodic grammarcheck of documentation.
Rik <rik@octave.org>
parents:
16792
diff
changeset
|
811 blocks. It also significantly improves the chance of finding a solution |
16600
f2f5dd09e97d
doc: fix some minor sparse documentation oversights
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14138
diff
changeset
|
812 to over-determined problems rather than just returning a vector of |
f2f5dd09e97d
doc: fix some minor sparse documentation oversights
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14138
diff
changeset
|
813 @dfn{NaN}'s. |
5681 | 814 |
815 All of the solvers above, can calculate an estimate of the condition | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
816 number. This can be used to detect numerical stability problems in the |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
817 solution and force a minimum norm solution to be used. However, for |
5681 | 818 narrow banded, triangular or diagonal matrices, the cost of |
819 calculating the condition number is significant, and can in fact | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
820 exceed the cost of factoring the matrix. Therefore the condition |
6939 | 821 number is not calculated in these cases, and Octave relies on simpler |
9088
77e71f3da3d6
Fix documentation image printing under new development code
Rik <rdrider0-list@yahoo.com>
parents:
9066
diff
changeset
|
822 techniques to detect singular matrices or the underlying @sc{lapack} code in |
5681 | 823 the case of banded matrices. |
5164 | 824 |
5322 | 825 The user can force the type of the matrix with the @code{matrix_type} |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
826 function. This overcomes the cost of discovering the type of the matrix. |
8347
fa78cb8d8a5c
corrections for typos
Brian Gough<bjg@network-theory.co.uk>
parents:
8286
diff
changeset
|
827 However, it should be noted that identifying the type of the matrix incorrectly |
5322 | 828 will lead to unpredictable results, and so @code{matrix_type} should be |
5506 | 829 used with care. |
5322 | 830 |
6620 | 831 @DOCSTRING(normest) |
832 | |
8286
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8106
diff
changeset
|
833 @DOCSTRING(onenormest) |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8106
diff
changeset
|
834 |
7189 | 835 @DOCSTRING(condest) |
836 | |
6620 | 837 @DOCSTRING(spparms) |
838 | |
839 @DOCSTRING(sprank) | |
840 | |
841 @DOCSTRING(symbfact) | |
842 | |
7681
b1c1133641ee
Add the spaugment function
David Bateman <dbateman@free.fr>
parents:
7619
diff
changeset
|
843 For non square matrices, the user can also utilize the @code{spaugment} |
b1c1133641ee
Add the spaugment function
David Bateman <dbateman@free.fr>
parents:
7619
diff
changeset
|
844 function to find a least squares solution to a linear equation. |
b1c1133641ee
Add the spaugment function
David Bateman <dbateman@free.fr>
parents:
7619
diff
changeset
|
845 |
b1c1133641ee
Add the spaugment function
David Bateman <dbateman@free.fr>
parents:
7619
diff
changeset
|
846 @DOCSTRING(spaugment) |
b1c1133641ee
Add the spaugment function
David Bateman <dbateman@free.fr>
parents:
7619
diff
changeset
|
847 |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8347
diff
changeset
|
848 Finally, the function @code{eigs} can be used to calculate a limited |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8347
diff
changeset
|
849 number of eigenvalues and eigenvectors based on a selection criteria |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8347
diff
changeset
|
850 and likewise for @code{svds} which calculates a limited number of |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8347
diff
changeset
|
851 singular values and vectors. |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8347
diff
changeset
|
852 |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8347
diff
changeset
|
853 @DOCSTRING(eigs) |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8347
diff
changeset
|
854 |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8347
diff
changeset
|
855 @DOCSTRING(svds) |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8347
diff
changeset
|
856 |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
857 @node Iterative Techniques |
17160
f2a8592b8fbd
doc: Shorten some long subsection names in Manual.
Rik <rik@octave.org>
parents:
17101
diff
changeset
|
858 @section Iterative Techniques Applied to Sparse Matrices |
5164 | 859 |
6620 | 860 The left division @code{\} and right division @code{/} operators, |
861 discussed in the previous section, use direct solvers to resolve a | |
862 linear equation of the form @code{@var{x} = @var{A} \ @var{b}} or | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
863 @code{@var{x} = @var{b} / @var{A}}. Octave equally includes a number of |
6620 | 864 functions to solve sparse linear equations using iterative techniques. |
865 | |
866 @DOCSTRING(pcg) | |
867 | |
868 @DOCSTRING(pcr) | |
5837 | 869 |
6620 | 870 The speed with which an iterative solver converges to a solution can be |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
871 accelerated with the use of a pre-conditioning matrix @var{M}. In this |
6620 | 872 case the linear equation @code{@var{M}^-1 * @var{x} = @var{M}^-1 * |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
873 @var{A} \ @var{b}} is solved instead. Typical pre-conditioning matrices |
6620 | 874 are partial factorizations of the original matrix. |
5648 | 875 |
6620 | 876 @DOCSTRING(luinc) |
877 | |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8488
diff
changeset
|
878 @node Real Life Example |
17160
f2a8592b8fbd
doc: Shorten some long subsection names in Manual.
Rik <rik@octave.org>
parents:
17101
diff
changeset
|
879 @section Real Life Example using Sparse Matrices |
5648 | 880 |
881 A common application for sparse matrices is in the solution of Finite | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
882 Element Models. Finite element models allow numerical solution of |
5648 | 883 partial differential equations that do not have closed form solutions, |
884 typically because of the complex shape of the domain. | |
885 | |
886 In order to motivate this application, we consider the boundary value | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
887 Laplace equation. This system can model scalar potential fields, such |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
888 as heat or electrical potential. Given a medium |
5648 | 889 @tex |
10668
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
890 $\Omega$ with boundary $\partial\Omega$. At all points on the $\partial\Omega$ |
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
891 the boundary conditions are known, and we wish to calculate the potential in |
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
892 $\Omega$. |
5648 | 893 @end tex |
10668
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
894 @ifnottex |
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
895 Omega with boundary dOmega. At all points on the dOmega |
5648 | 896 the boundary conditions are known, and we wish to calculate the potential in |
10668
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
897 Omega. |
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
898 @end ifnottex |
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
899 Boundary conditions may specify the potential (Dirichlet |
5648 | 900 boundary condition), its normal derivative across the boundary |
901 (Neumann boundary condition), or a weighted sum of the potential and | |
902 its derivative (Cauchy boundary condition). | |
903 | |
904 In a thermal model, we want to calculate the temperature in | |
905 @tex | |
906 $\Omega$ | |
907 @end tex | |
10668
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
908 @ifnottex |
5648 | 909 Omega |
10668
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
910 @end ifnottex |
5648 | 911 and know the boundary temperature (Dirichlet condition) |
912 or heat flux (from which we can calculate the Neumann condition | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
913 by dividing by the thermal conductivity at the boundary). Similarly, |
5648 | 914 in an electrical model, we want to calculate the voltage in |
915 @tex | |
916 $\Omega$ | |
917 @end tex | |
10668
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
918 @ifnottex |
5648 | 919 Omega |
10668
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
920 @end ifnottex |
5648 | 921 and know the boundary voltage (Dirichlet) or current |
922 (Neumann condition after diving by the electrical conductivity). | |
923 In an electrical model, it is common for much of the boundary | |
924 to be electrically isolated; this is a Neumann boundary condition | |
925 with the current equal to zero. | |
926 | |
927 The simplest finite element models will divide | |
928 @tex | |
929 $\Omega$ | |
930 @end tex | |
10668
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
931 @ifnottex |
5648 | 932 Omega |
10668
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
933 @end ifnottex |
5648 | 934 into simplexes (triangles in 2D, pyramids in 3D). |
935 @ifset htmltex | |
11573
6f8ffe2c6f76
Grammarcheck txi files for 3.4 release.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
936 We take as a 3-D example a cylindrical liquid filled tank with a small |
5648 | 937 non-conductive ball from the EIDORS project@footnote{EIDORS - Electrical |
938 Impedance Tomography and Diffuse optical Tomography Reconstruction Software | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
939 @url{http://eidors3d.sourceforge.net}}. This is model is designed to reflect |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
940 an application of electrical impedance tomography, where current patterns |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
941 are applied to such a tank in order to image the internal conductivity |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
942 distribution. In order to describe the FEM geometry, we have a matrix of |
5648 | 943 vertices @code{nodes} and simplices @code{elems}. |
944 @end ifset | |
945 | |
11573
6f8ffe2c6f76
Grammarcheck txi files for 3.4 release.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
946 The following example creates a simple rectangular 2-D electrically |
5648 | 947 conductive medium with 10 V and 20 V imposed on opposite sides |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
948 (Dirichlet boundary conditions). All other edges are electrically |
5648 | 949 isolated. |
950 | |
951 @example | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
952 @group |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
953 node_y = [1;1.2;1.5;1.8;2]*ones(1,11); |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
954 node_x = ones(5,1)*[1,1.05,1.1,1.2, ... |
5648 | 955 1.3,1.5,1.7,1.8,1.9,1.95,2]; |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
956 nodes = [node_x(:), node_y(:)]; |
5648 | 957 |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
958 [h,w] = size (node_x); |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
959 elems = []; |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
960 for idx = 1:w-1 |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
961 widx = (idx-1)*h; |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
962 elems = [elems; ... |
5648 | 963 widx+[(1:h-1);(2:h);h+(1:h-1)]'; ... |
964 widx+[(2:h);h+(2:h);h+(1:h-1)]' ]; | |
965 endfor | |
966 | |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
967 E = size (elems,1); # No. of simplices |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
968 N = size (nodes,1); # No. of vertices |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
969 D = size (elems,2); # dimensions+1 |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
970 @end group |
5648 | 971 @end example |
972 | |
973 This creates a N-by-2 matrix @code{nodes} and a E-by-3 matrix | |
974 @code{elems} with values, which define finite element triangles: | |
5164 | 975 |
5648 | 976 @example |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
977 @group |
5648 | 978 nodes(1:7,:)' |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
979 1.00 1.00 1.00 1.00 1.00 1.05 1.05 @dots{} |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
980 1.00 1.20 1.50 1.80 2.00 1.00 1.20 @dots{} |
5648 | 981 |
982 elems(1:7,:)' | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
983 1 2 3 4 2 3 4 @dots{} |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
984 2 3 4 5 7 8 9 @dots{} |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
985 6 7 8 9 6 7 8 @dots{} |
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
986 @end group |
5648 | 987 @end example |
988 | |
989 Using a first order FEM, we approximate the electrical conductivity | |
990 distribution in | |
991 @tex | |
992 $\Omega$ | |
993 @end tex | |
10668
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
994 @ifnottex |
5648 | 995 Omega |
10668
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
996 @end ifnottex |
5648 | 997 as constant on each simplex (represented by the vector @code{conductivity}). |
998 Based on the finite element geometry, we first calculate a system (or | |
999 stiffness) matrix for each simplex (represented as 3-by-3 elements on the | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
1000 diagonal of the element-wise system matrix @code{SE}. Based on @code{SE} |
5648 | 1001 and a N-by-DE connectivity matrix @code{C}, representing the connections |
7001 | 1002 between simplices and vertices, the global connectivity matrix @code{S} is |
5648 | 1003 calculated. |
1004 | |
1005 @example | |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1006 ## Element conductivity |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1007 conductivity = [1*ones(1,16), ... |
5648 | 1008 2*ones(1,48), 1*ones(1,16)]; |
1009 | |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1010 ## Connectivity matrix |
5648 | 1011 C = sparse ((1:D*E), reshape (elems', ... |
1012 D*E, 1), 1, D*E, N); | |
1013 | |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1014 ## Calculate system matrix |
5648 | 1015 Siidx = floor ([0:D*E-1]'/D) * D * ... |
1016 ones(1,D) + ones(D*E,1)*(1:D) ; | |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1017 Sjidx = [1:D*E]'*ones (1,D); |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1018 Sdata = zeros (D*E,D); |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1019 dfact = factorial (D-1); |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1020 for j = 1:E |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1021 a = inv ([ones(D,1), ... |
5648 | 1022 nodes(elems(j,:), :)]); |
1023 const = conductivity(j) * 2 / ... | |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1024 dfact / abs (det (a)); |
5648 | 1025 Sdata(D*(j-1)+(1:D),:) = const * ... |
1026 a(2:D,:)' * a(2:D,:); | |
1027 endfor | |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1028 ## Element-wise system matrix |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1029 SE = sparse(Siidx,Sjidx,Sdata); |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1030 ## Global system matrix |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1031 S = C'* SE *C; |
5648 | 1032 @end example |
1033 | |
1034 The system matrix acts like the conductivity | |
1035 @tex | |
1036 $S$ | |
1037 @end tex | |
10668
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
1038 @ifnottex |
5648 | 1039 @code{S} |
10668
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
1040 @end ifnottex |
5648 | 1041 in Ohm's law |
1042 @tex | |
1043 $SV = I$. | |
1044 @end tex | |
10668
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
1045 @ifnottex |
5648 | 1046 @code{S * V = I}. |
10668
72585f1ca7a2
Replace @ifinfo with @ifnottex.
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
1047 @end ifnottex |
5648 | 1048 Based on the Dirichlet and Neumann boundary conditions, we are able to |
1049 solve for the voltages at each vertex @code{V}. | |
1050 | |
1051 @example | |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1052 ## Dirichlet boundary conditions |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1053 D_nodes = [1:5, 51:55]; |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1054 D_value = [10*ones(1,5), 20*ones(1,5)]; |
5648 | 1055 |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1056 V = zeros (N,1); |
5648 | 1057 V(D_nodes) = D_value; |
1058 idx = 1:N; # vertices without Dirichlet | |
1059 # boundary condns | |
1060 idx(D_nodes) = []; | |
1061 | |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1062 ## Neumann boundary conditions. Note that |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1063 ## N_value must be normalized by the |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1064 ## boundary length and element conductivity |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1065 N_nodes = []; |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1066 N_value = []; |
5648 | 1067 |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1068 Q = zeros (N,1); |
5648 | 1069 Q(N_nodes) = N_value; |
1070 | |
1071 V(idx) = S(idx,idx) \ ( Q(idx) - ... | |
1072 S(idx,D_nodes) * V(D_nodes)); | |
1073 @end example | |
1074 | |
1075 Finally, in order to display the solution, we show each solved voltage | |
1076 value in the z-axis for each simplex vertex. | |
1077 @ifset htmltex | |
1078 @xref{fig:femmodel}. | |
1079 @end ifset | |
1080 | |
1081 @example | |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
1082 @group |
5648 | 1083 elemx = elems(:,[1,2,3,1])'; |
1084 xelems = reshape (nodes(elemx, 1), 4, E); | |
1085 yelems = reshape (nodes(elemx, 2), 4, E); | |
1086 velems = reshape (V(elemx), 4, E); | |
14856
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1087 plot3 (xelems,yelems,velems,"k"); |
c3fd61c59e9c
maint: Use Octave coding conventions for cuddling parentheses in doc directory
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
1088 print "grid.eps"; |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
1089 @end group |
5648 | 1090 @end example |
1091 | |
1092 | |
1093 @ifset htmltex | |
1094 @float Figure,fig:femmodel | |
9088
77e71f3da3d6
Fix documentation image printing under new development code
Rik <rdrider0-list@yahoo.com>
parents:
9066
diff
changeset
|
1095 @center @image{grid,4in} |
5648 | 1096 @caption{Example finite element model the showing triangular elements. |
1097 The height of each vertex corresponds to the solution value.} | |
1098 @end float | |
1099 @end ifset |