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
|
<html lang="en">
<head>
<title>Matrices - Untitled</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Untitled">
<meta name="generator" content="makeinfo 4.11">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Numeric-Data-Types.html#Numeric-Data-Types" title="Numeric Data Types">
<link rel="next" href="Ranges.html#Ranges" title="Ranges">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
</head>
<body>
<div class="node">
<p>
<a name="Matrices"></a>
Next: <a rel="next" accesskey="n" href="Ranges.html#Ranges">Ranges</a>,
Up: <a rel="up" accesskey="u" href="Numeric-Data-Types.html#Numeric-Data-Types">Numeric Data Types</a>
<hr>
</div>
<h3 class="section">4.1 Matrices</h3>
<p><a name="index-matrices-216"></a>
<a name="index-g_t_005b-217"></a><a name="index-g_t_005d-218"></a><a name="index-g_t_003b-219"></a><a name="index-g_t_002c-220"></a>
It is easy to define a matrix of values in Octave. The size of the
matrix is determined automatically, so it is not necessary to explicitly
state the dimensions. The expression
<pre class="example"> a = [1, 2; 3, 4]
</pre>
<p class="noindent">results in the matrix
<pre class="example">
/ \
| 1 2 |
a = | |
| 3 4 |
\ /
</pre>
<p>Elements of a matrix may be arbitrary expressions, provided that the
dimensions all make sense when combining the various pieces. For
example, given the above matrix, the expression
<pre class="example"> [ a, a ]
</pre>
<p class="noindent">produces the matrix
<pre class="example"> ans =
1 2 1 2
3 4 3 4
</pre>
<p class="noindent">but the expression
<pre class="example"> [ a, 1 ]
</pre>
<p class="noindent">produces the error
<pre class="example"> error: number of rows must match (1 != 2) near line 13, column 6
</pre>
<p class="noindent">(assuming that this expression was entered as the first thing on line
13, of course).
<p>Inside the square brackets that delimit a matrix expression, Octave
looks at the surrounding context to determine whether spaces and newline
characters should be converted into element and row separators, or
simply ignored, so an expression like
<pre class="example"> a = [ 1 2
3 4 ]
</pre>
<p class="noindent">will work. However, some possible sources of confusion remain. For
example, in the expression
<pre class="example"> [ 1 - 1 ]
</pre>
<p class="noindent">the ‘<samp><span class="samp">-</span></samp>’ is treated as a binary operator and the result is the
scalar 0, but in the expression
<pre class="example"> [ 1 -1 ]
</pre>
<p class="noindent">the ‘<samp><span class="samp">-</span></samp>’ is treated as a unary operator and the result is the
vector <code>[ 1, -1 ]</code>. Similarly, the expression
<pre class="example"> [ sin (pi) ]
</pre>
<p class="noindent">will be parsed as
<pre class="example"> [ sin, (pi) ]
</pre>
<p class="noindent">and will result in an error since the <code>sin</code> function will be
called with no arguments. To get around this, you must omit the space
between <code>sin</code> and the opening parenthesis, or enclose the
expression in a set of parentheses:
<pre class="example"> [ (sin (pi)) ]
</pre>
<p>Whitespace surrounding the single quote character (‘<samp><span class="samp">'</span></samp>’, used as a
transpose operator and for delimiting character strings) can also cause
confusion. Given <code>a = 1</code>, the expression
<pre class="example"> [ 1 a' ]
</pre>
<p class="noindent">results in the single quote character being treated as a
transpose operator and the result is the vector <code>[ 1, 1 ]</code>, but the
expression
<pre class="example"> [ 1 a ' ]
</pre>
<p class="noindent">produces the error message
<pre class="example"> parse error:
syntax error
>>> [ 1 a ' ]
^
</pre>
<p class="noindent">because not doing so would cause trouble when parsing the valid expression
<pre class="example"> [ a 'foo' ]
</pre>
<p>For clarity, it is probably best to always use commas and semicolons to
separate matrix elements and rows.
<p>When you type a matrix or the name of a variable whose value is a
matrix, Octave responds by printing the matrix in with neatly aligned
rows and columns. If the rows of the matrix are too large to fit on the
screen, Octave splits the matrix and displays a header before each
section to indicate which columns are being displayed. You can use the
following variables to control the format of the output.
<!-- pr-output.cc -->
<p><a name="doc_002doutput_005fmax_005ffield_005fwidth"></a>
<div class="defun">
— Built-in Function: <var>val</var> = <b>output_max_field_width</b> ()<var><a name="index-output_005fmax_005ffield_005fwidth-221"></a></var><br>
— Built-in Function: <var>old_val</var> = <b>output_max_field_width</b> (<var>new_val</var>)<var><a name="index-output_005fmax_005ffield_005fwidth-222"></a></var><br>
<blockquote><p>Query or set the internal variable that specifies the maximum width
of a numeric output field.
<!-- Texinfo @sp should work but in practice produces ugly results for HTML. -->
<!-- A simple blank line produces the correct behavior. -->
<!-- @sp 1 -->
<p class="noindent"><strong>See also:</strong> <a href="doc_002dformat.html#doc_002dformat">format</a>, <a href="doc_002doutput_005fprecision.html#doc_002doutput_005fprecision">output_precision</a>.
</p></blockquote></div>
<!-- pr-output.cc -->
<p><a name="doc_002doutput_005fprecision"></a>
<div class="defun">
— Built-in Function: <var>val</var> = <b>output_precision</b> ()<var><a name="index-output_005fprecision-223"></a></var><br>
— Built-in Function: <var>old_val</var> = <b>output_precision</b> (<var>new_val</var>)<var><a name="index-output_005fprecision-224"></a></var><br>
<blockquote><p>Query or set the internal variable that specifies the minimum number of
significant figures to display for numeric output.
<!-- Texinfo @sp should work but in practice produces ugly results for HTML. -->
<!-- A simple blank line produces the correct behavior. -->
<!-- @sp 1 -->
<p class="noindent"><strong>See also:</strong> <a href="doc_002dformat.html#doc_002dformat">format</a>, <a href="doc_002doutput_005fmax_005ffield_005fwidth.html#doc_002doutput_005fmax_005ffield_005fwidth">output_max_field_width</a>.
</p></blockquote></div>
<p>It is possible to achieve a wide range of output styles by using
different values of <code>output_precision</code> and
<code>output_max_field_width</code>. Reasonable combinations can be set using
the <code>format</code> function. See <a href="Basic-Input-and-Output.html#Basic-Input-and-Output">Basic Input and Output</a>.
<!-- pr-output.cc -->
<p><a name="doc_002dsplit_005flong_005frows"></a>
<div class="defun">
— Built-in Function: <var>val</var> = <b>split_long_rows</b> ()<var><a name="index-split_005flong_005frows-225"></a></var><br>
— Built-in Function: <var>old_val</var> = <b>split_long_rows</b> (<var>new_val</var>)<var><a name="index-split_005flong_005frows-226"></a></var><br>
<blockquote><p>Query or set the internal variable that controls whether rows of a matrix
may be split when displayed to a terminal window. If the rows are split,
Octave will display the matrix in a series of smaller pieces, each of
which can fit within the limits of your terminal width and each set of
rows is labeled so that you can easily see which columns are currently
being displayed. For example:
<pre class="example"> octave:13> rand (2,10)
ans =
Columns 1 through 6:
0.75883 0.93290 0.40064 0.43818 0.94958 0.16467
0.75697 0.51942 0.40031 0.61784 0.92309 0.40201
Columns 7 through 10:
0.90174 0.11854 0.72313 0.73326
0.44672 0.94303 0.56564 0.82150
</pre>
</blockquote></div>
<p>Octave automatically switches to scientific notation when values become
very large or very small. This guarantees that you will see several
significant figures for every value in a matrix. If you would prefer to
see all values in a matrix printed in a fixed point format, you can set
the built-in variable <code>fixed_point_format</code> to a nonzero value. But
doing so is not recommended, because it can produce output that can
easily be misinterpreted.
<!-- pr-output.cc -->
<p><a name="doc_002dfixed_005fpoint_005fformat"></a>
<div class="defun">
— Built-in Function: <var>val</var> = <b>fixed_point_format</b> ()<var><a name="index-fixed_005fpoint_005fformat-227"></a></var><br>
— Built-in Function: <var>old_val</var> = <b>fixed_point_format</b> (<var>new_val</var>)<var><a name="index-fixed_005fpoint_005fformat-228"></a></var><br>
<blockquote><p>Query or set the internal variable that controls whether Octave will
use a scaled format to print matrix values such that the largest
element may be written with a single leading digit with the scaling
factor is printed on the first line of output. For example,
<pre class="example"> octave:1> logspace (1, 7, 5)'
ans =
1.0e+07 *
0.00000
0.00003
0.00100
0.03162
1.00000
</pre>
<p class="noindent">Notice that first value appears to be zero when it is actually 1. For
this reason, you should be careful when setting
<code>fixed_point_format</code> to a nonzero value.
</p></blockquote></div>
<ul class="menu">
<li><a accesskey="1" href="Empty-Matrices.html#Empty-Matrices">Empty Matrices</a>
</ul>
</body></html>
|