1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!--Converted with LaTeX2HTML 98.2 beta6 (August 14th, 1998)
original version by: Nikos Drakos, CBLU, University of Leeds
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>Band Storage</TITLE>
<META NAME="description" CONTENT="Band Storage">
<META NAME="keywords" CONTENT="lug_l2h">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<LINK REL="STYLESHEET" HREF="lug_l2h.css">
<LINK REL="next" HREF="node125.html">
<LINK REL="previous" HREF="node123.html">
<LINK REL="up" HREF="node121.html">
<LINK REL="next" HREF="node125.html">
</HEAD>
<BODY >
<!--Navigation Panel-->
<A NAME="tex2html5961"
HREF="node125.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next"
SRC="next_motif.png"></A>
<A NAME="tex2html5955"
HREF="node121.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up"
SRC="up_motif.png"></A>
<A NAME="tex2html5949"
HREF="node123.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous"
SRC="previous_motif.png"></A>
<A NAME="tex2html5957"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents"
SRC="contents_motif.png"></A>
<A NAME="tex2html5959"
HREF="node152.html">
<IMG WIDTH="43" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="index"
SRC="index_motif.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html5962"
HREF="node125.html">Tridiagonal and Bidiagonal Matrices</A>
<B> Up:</B> <A NAME="tex2html5956"
HREF="node121.html">Matrix Storage Schemes</A>
<B> Previous:</B> <A NAME="tex2html5950"
HREF="node123.html">Packed Storage</A>
  <B> <A NAME="tex2html5958"
HREF="node1.html">Contents</A></B>
  <B> <A NAME="tex2html5960"
HREF="node152.html">Index</A></B>
<BR>
<BR>
<!--End of Navigation Panel-->
<H2><A NAME="SECTION03533000000000000000"></A><A NAME="subsecband"></A>
<BR>
Band Storage
</H2>
<P>
An <B><I>m</I></B>-by-<B><I>n</I></B> band matrix<A NAME="19825"></A> with <B><I>kl</I></B> subdiagonals
and <B><I>ku</I></B> superdiagonals may be
stored compactly in a two-dimensional array with <B><I>kl</I>+<I>ku</I>+1</B> rows and <B><I>n</I></B> columns.
Columns of the matrix are stored in corresponding columns of the
array, and diagonals of the matrix are stored in rows of the array.
This storage scheme should be used in practice only if
<!-- MATH
$kl, ku \ll \min(m,n)$
-->
<IMG
WIDTH="150" HEIGHT="34" ALIGN="MIDDLE" BORDER="0"
SRC="img928.png"
ALT="$kl, ku \ll \min(m,n)$">,
although LAPACK routines work correctly for all values of <B><I>kl</I></B> and <B><I>ku</I></B>.
In LAPACK, arrays that hold matrices in band storage have names
ending in `B'.
<P>
To be precise, <B><I>a</I><SUB><I>ij</I></SUB></B> is stored in AB(<B><I>ku</I>+1+<I>i</I>-<I>j</I>,<I>j</I></B>) for
<!-- MATH
$\max(1,j-ku) \leq i \leq \min(m,j+kl)$
-->
<IMG
WIDTH="279" HEIGHT="34" ALIGN="MIDDLE" BORDER="0"
SRC="img929.png"
ALT="$\max(1,j-ku) \leq i \leq \min(m,j+kl)$">.
For example, when <B><I>m</I> = <I>n</I> = 5</B>, <B><I>kl</I> = 2</B> and <B><I>ku</I> = 1</B>:
<P>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER">Band matrix <B><I>A</I></B></TD>
<TD ALIGN="CENTER">Band storage in array AB</TD>
</TR>
<TR><TD ALIGN="CENTER">
<!-- MATH
$\left( \begin{array}{ccccc}
a_{11} & a_{12} & & & \\
a_{21} & a_{22} & a_{23} & & \\
a_{31} & a_{32} & a_{33} & a_{34} & \\
& a_{42} & a_{43} & a_{44} & a_{45} \\
& & a_{53} & a_{54} & a_{55}
\end{array} \right)$
-->
<IMG
WIDTH="229" HEIGHT="125" ALIGN="MIDDLE" BORDER="0"
SRC="img930.png"
ALT="$
\left( \begin{array}{ccccc}
a_{11} & a_{12} & & & \\
a_{21} & a_{22} & a_{23}...
..._{43} & a_{44} & a_{45} \\
& & a_{53} & a_{54} & a_{55}
\end{array} \right)
$"></TD>
<TD ALIGN="CENTER">
<!-- MATH
$\begin{array}{ccccc}
\ast & a_{12} & a_{23} & a_{34} & a_{45} \\
a_{11} & a_{22} & a_{33} & a_{44} & a_{55} \\
a_{21} & a_{32} & a_{43} & a_{54} & \ast \\
a_{31} & a_{42} & a_{53} & \ast & \ast
\end{array}$
-->
<IMG
WIDTH="202" HEIGHT="103" ALIGN="MIDDLE" BORDER="0"
SRC="img931.png"
ALT="$
\begin{array}{ccccc}
\ast & a_{12} & a_{23} & a_{34} & a_{45} \\
a_{11} & a_...
... a_{43} & a_{54} & \ast \\
a_{31} & a_{42} & a_{53} & \ast & \ast
\end{array}$"></TD>
</TR>
</TABLE>
</DIV>
<P>
The elements marked <IMG
WIDTH="13" HEIGHT="15" ALIGN="BOTTOM" BORDER="0"
SRC="img914.png"
ALT="$\ast$">
in the upper left and lower right
corners of the array AB need not be set, and are not referenced by
LAPACK routines.
<P>
<B>Note:</B> when a band matrix is supplied for <B><I>LU</I></B> factorization,
space<A NAME="19871"></A> must be allowed to store an
additional <B><I>kl</I></B> superdiagonals,
generated by fill-in as a result of row interchanges.
This means that the matrix is stored according to the above scheme,
but with <B><I>kl</I> + <I>ku</I></B> superdiagonals.
<P>
Triangular band matrices are stored in the same format, with either
<B><I>kl</I> = 0</B> if upper triangular, or <B><I>ku</I> = 0</B> if
lower triangular.
<P>
For symmetric or Hermitian band matrices with <B><I>kd</I></B> subdiagonals or
superdiagonals, only the upper or lower triangle (as specified by
UPLO) need be stored:
<P>
<UL><LI>if UPLO = `U', <B><I>a</I><SUB><I>ij</I></SUB></B> is stored in AB(<B><I>kd</I>+1+<I>i</I>-<I>j</I>,<I>j</I></B>) for
<!-- MATH
$\max(1,j-kd) \leq i \leq j$
-->
<IMG
WIDTH="176" HEIGHT="34" ALIGN="MIDDLE" BORDER="0"
SRC="img932.png"
ALT="$\max(1,j-kd) \leq i \leq j$">;
<P>
<LI>if UPLO = `L', <B><I>a</I><SUB><I>ij</I></SUB></B> is stored in AB(<B>1+<I>i</I>-<I>j</I>,<I>j</I></B>) for
<!-- MATH
$j \leq i \leq \min(n,j+kd)$
-->
<IMG
WIDTH="174" HEIGHT="34" ALIGN="MIDDLE" BORDER="0"
SRC="img933.png"
ALT="$j \leq i \leq \min(n,j+kd)$">.
<P>
</UL>
<P>
For example, when <B><I>n</I> = 5</B> and <B><I>kd</I> = 2</B>:
<P>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER">UPLO</TD>
<TD ALIGN="CENTER">Hermitian band matrix <B><I>A</I></B></TD>
<TD ALIGN="CENTER">Band storage in array AB</TD>
</TR>
<TR><TD ALIGN="CENTER">`U'</TD>
<TD ALIGN="CENTER">
<!-- MATH
$\left( \begin{array}{ccccc}
a_{11} & a_{12} & a_{13} & & \\
\bar{a}_{12} & a_{22} & a_{23} & a_{24} & \\
\bar{a}_{13} & \bar{a}_{23} & a_{33} & a_{34} & a_{35} \\
& \bar{a}_{24} & \bar{a}_{34} & a_{44} & a_{45} \\
& & \bar{a}_{35} & \bar{a}_{45} & a_{55}
\end{array} \right)$
-->
<IMG
WIDTH="229" HEIGHT="125" ALIGN="MIDDLE" BORDER="0"
SRC="img934.png"
ALT="$
\left( \begin{array}{ccccc}
a_{11} & a_{12} & a_{13} & & \\
\bar{a}_{12} & a_...
...44} & a_{45} \\
& & \bar{a}_{35} & \bar{a}_{45} & a_{55}
\end{array} \right)
$"></TD>
<TD ALIGN="CENTER">
<!-- MATH
$\begin{array}{ccccc}
\ast & \ast & a_{13} & a_{24} & a_{35} \\
\ast & a_{12} & a_{23} & a_{34} & a_{45} \\
a_{11} & a_{22} & a_{33} & a_{44} & a_{55}
\end{array}$
-->
<IMG
WIDTH="202" HEIGHT="81" ALIGN="MIDDLE" BORDER="0"
SRC="img935.png"
ALT="$
\begin{array}{ccccc}
\ast & \ast & a_{13} & a_{24} & a_{35} \\
\ast & a_{12...
...3} & a_{34} & a_{45} \\
a_{11} & a_{22} & a_{33} & a_{44} & a_{55}
\end{array}$"></TD>
</TR>
<TR><TD ALIGN="CENTER">`L'</TD>
<TD ALIGN="CENTER">
<!-- MATH
$\left( \begin{array}{ccccc}
a_{11} & \bar{a}_{21} & \bar{a}_{31} & & \\
a_{21} & a_{22} & \bar{a}_{32} & \bar{a}_{42} & \\
a_{31} & a_{32} & a_{33} & \bar{a}_{43} & \bar{a}_{53} \\
& a_{42} & a_{43} & a_{44} & \bar{a}_{54} \\
& & a_{53} & a_{54} & a_{55}
\end{array} \right)$
-->
<IMG
WIDTH="229" HEIGHT="125" ALIGN="MIDDLE" BORDER="0"
SRC="img936.png"
ALT="$
\left( \begin{array}{ccccc}
a_{11} & \bar{a}_{21} & \bar{a}_{31} & & \\
a_{21...
... & a_{44} & \bar{a}_{54} \\
& & a_{53} & a_{54} & a_{55}
\end{array} \right)
$"></TD>
<TD ALIGN="CENTER">
<!-- MATH
$\begin{array}{ccccc}
a_{11} & a_{22} & a_{33} & a_{44} & a_{55} \\
a_{21} & a_{32} & a_{43} & a_{54} & \ast \\
a_{31} & a_{42} & a_{53} & \ast & \ast
\end{array}$
-->
<IMG
WIDTH="202" HEIGHT="81" ALIGN="MIDDLE" BORDER="0"
SRC="img937.png"
ALT="$
\begin{array}{ccccc}
a_{11} & a_{22} & a_{33} & a_{44} & a_{55} \\
a_{21} & a...
... a_{43} & a_{54} & \ast \\
a_{31} & a_{42} & a_{53} & \ast & \ast
\end{array}$"></TD>
</TR>
</TABLE>
</DIV>
<P>
EISPACK<A NAME="19969"></A> routines use a different storage scheme for band matrices,
in which rows of the matrix are stored in corresponding rows of the
array, and diagonals of the matrix are stored in columns of the array
(see Appendix <A HREF="node146.html#chaplineis">D</A>).
<P>
<HR>
<!--Navigation Panel-->
<A NAME="tex2html5961"
HREF="node125.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next"
SRC="next_motif.png"></A>
<A NAME="tex2html5955"
HREF="node121.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up"
SRC="up_motif.png"></A>
<A NAME="tex2html5949"
HREF="node123.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous"
SRC="previous_motif.png"></A>
<A NAME="tex2html5957"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents"
SRC="contents_motif.png"></A>
<A NAME="tex2html5959"
HREF="node152.html">
<IMG WIDTH="43" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="index"
SRC="index_motif.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html5962"
HREF="node125.html">Tridiagonal and Bidiagonal Matrices</A>
<B> Up:</B> <A NAME="tex2html5956"
HREF="node121.html">Matrix Storage Schemes</A>
<B> Previous:</B> <A NAME="tex2html5950"
HREF="node123.html">Packed Storage</A>
  <B> <A NAME="tex2html5958"
HREF="node1.html">Contents</A></B>
  <B> <A NAME="tex2html5960"
HREF="node152.html">Index</A></B>
<!--End of Navigation Panel-->
<ADDRESS>
<I>Susan Blackford</I>
<BR><I>1999-10-01</I>
</ADDRESS>
</BODY>
</HTML>
|