Skip to content

Commit b202c84

Browse files
committed
Website build
1 parent 167a285 commit b202c84

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

-15 Bytes
Binary file not shown.

L2_QR_factorisation.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ <h2><span class="section-number">2.6. </span>Householder triangulation<a class="
681681
done so, you will need to modified
682682
<a class="reference internal" href="cla_utils.html#cla_utils.exercises3.householder" title="cla_utils.exercises3.householder"><code class="xref py py-func docutils literal notranslate"><span class="pre">cla_utils.exercises3.householder()</span></code></a> to use the <code class="docutils literal notranslate"><span class="pre">kmax</span></code>
683683
argument. You may make use of the built-in triangular solve
684-
algorithm <a class="reference external" href="http://scipy.github.io/devdocs/reference/generated/scipy.linalg.solve_triangular.html#scipy.linalg.solve_triangular" title="(in SciPy v1.8.0.dev0+1869.838cfbe)"><code class="xref py py-func docutils literal notranslate"><span class="pre">scipy.linalg.solve_triangular()</span></code></a> (we shall consider
684+
algorithm <a class="reference external" href="http://scipy.github.io/devdocs/reference/generated/scipy.linalg.solve_triangular.html#scipy.linalg.solve_triangular" title="(in SciPy v1.8.0.dev0+1921.c30fefc)"><code class="xref py py-func docutils literal notranslate"><span class="pre">scipy.linalg.solve_triangular()</span></code></a> (we shall consider
685685
triangular matrix algorithms briefly later). The test script
686686
<code class="docutils literal notranslate"><span class="pre">test_exercises3.py</span></code> in the <code class="docutils literal notranslate"><span class="pre">test</span></code> directory will also test this
687687
function.</p>
@@ -793,7 +793,7 @@ <h2><span class="section-number">2.7. </span>Application: Least squares problems
793793
appropriate augmented matrix <span class="math notranslate nohighlight">\(\hat{A}\)</span>, calling
794794
<a class="reference internal" href="cla_utils.html#cla_utils.exercises3.householder" title="cla_utils.exercises3.householder"><code class="xref py py-func docutils literal notranslate"><span class="pre">cla_utils.exercises3.householder()</span></code></a> and extracting appropriate
795795
subarrays using slice notation, before using
796-
<a class="reference external" href="http://scipy.github.io/devdocs/reference/generated/scipy.linalg.solve_triangular.html#scipy.linalg.solve_triangular" title="(in SciPy v1.8.0.dev0+1869.838cfbe)"><code class="xref py py-func docutils literal notranslate"><span class="pre">scipy.linalg.solve_triangular()</span></code></a> to solve the resulting upper triangular
796+
<a class="reference external" href="http://scipy.github.io/devdocs/reference/generated/scipy.linalg.solve_triangular.html#scipy.linalg.solve_triangular" title="(in SciPy v1.8.0.dev0+1921.c30fefc)"><code class="xref py py-func docutils literal notranslate"><span class="pre">scipy.linalg.solve_triangular()</span></code></a> to solve the resulting upper triangular
797797
system, before returning the solution <span class="math notranslate nohighlight">\(x\)</span>. The test script
798798
<code class="docutils literal notranslate"><span class="pre">test_exercises3.py</span></code> in the <code class="docutils literal notranslate"><span class="pre">test</span></code> directory will also test this
799799
function.</p>

L3_analysing_algorithms.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ <h2><span class="section-number">3.2. </span>Operation count for modified Gram-S
114114
<blockquote>
115115
<div><div class="math notranslate nohighlight">
116116
\[N_{\mbox{FLOPS}} \sim \sum_{i=1}^n \sum_{j=i+1}^n 4m
117-
\sim 4m \int_0^n \int_{x}^n x'\,d x' \,d x
117+
\sim 4m \int_0^n \int_{x}^n \,d x' \,d x
118118
= 4m\frac{n^2}{2} = 2mn^2,\]</div>
119119
</div></blockquote>
120120
<p>as suggested above.</p>

_sources/L3_analysing_algorithms.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ over `j`, which we can estimate by approximating the sum as an integral,
7474
.. math::
7575
7676
N_{\mbox{FLOPS}} \sim \sum_{i=1}^n \sum_{j=i+1}^n 4m
77-
\sim 4m \int_0^n \int_{x}^n x'\,d x' \,d x
77+
\sim 4m \int_0^n \int_{x}^n \,d x' \,d x
7878
= 4m\frac{n^2}{2} = 2mn^2,
7979
8080
as suggested above.

0 commit comments

Comments
 (0)