2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-22 03:42:19 +00:00

initializeation or not is models buisiness

This commit is contained in:
Michael Stevens
2004-09-21 10:08:27 +00:00
parent 111ca44c14
commit 04fb51afa4

View File

@@ -111,7 +111,7 @@ from, or is not defined in <a href=
<td>Sizing constructor</td>
<td><code>V v (n)</code></td>
<td><code>n &gt;= 0</code></td>
<td>Allocates an unitialized vector of <code>n</code> elements.</td>
<td>Allocates a vector of <code>n</code> elements.</td>
<td><code>v.size () == n</code>.</td>
</tr>
<tr>
@@ -267,7 +267,7 @@ from, or is not defined in <a href=
<td>Sizing constructor</td>
<td><code>M m (n1, n2)</code></td>
<td><code>n1 &gt;= 0</code> and <code>n2 &gt;= 0</code></td>
<td>Allocates an uninitialized matrix of <code>n1</code> rows and <code>n2</code>
<td>Allocates a matrix of <code>n1</code> rows and <code>n2</code>
columns.</td>
<td><code>m.size1 () == n1</code> and <code>m.size2 () ==
n2</code>.</td>