Skip to content

Commit ca6895f

Browse files
fredrikekreKristofferC
authored andcommitted
Fix trailing whitespace in svd docs introduced in cec4c32.
(cherry picked from commit a3eb274)
1 parent c9dba72 commit ca6895f

File tree

1 file changed

+6
-6
lines changed
  • stdlib/LinearAlgebra/src

1 file changed

+6
-6
lines changed

stdlib/LinearAlgebra/src/svd.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -390,14 +390,14 @@ object `F` such that `[A;B] = [F.U * F.D1; F.V * F.D2] * F.R0 * F.Q'`
390390
391391
Iterating the decomposition produces the components `U`, `V`, `Q`, `D1`, `D2`, and `R0`.
392392
393-
The generalized SVD is used in applications such as when one wants to compare how much belongs
394-
to `A` vs. how much belongs to `B`, as in human vs yeast genome, or signal vs noise, or between
393+
The generalized SVD is used in applications such as when one wants to compare how much belongs
394+
to `A` vs. how much belongs to `B`, as in human vs yeast genome, or signal vs noise, or between
395395
clusters vs within clusters. (See Edelman and Wang for discussion: https://arxiv.org/abs/1901.00485)
396396
397-
It decomposes `[A; B]` into `[UC; VS]H`, where `[UC; VS]` is a natural orthogonal basis for the
398-
column space of `[A; B]`, and `H = RQ'` is a natural non-orthogonal basis for the rowspace of `[A;B]`,
399-
where the top rows are most closely attributed to the `A` matrix, and the bottom to the `B` matrix.
400-
The multi-cosine/sine matrices `C` and `S` provide a multi-measure of how much `A` vs how much `B`,
397+
It decomposes `[A; B]` into `[UC; VS]H`, where `[UC; VS]` is a natural orthogonal basis for the
398+
column space of `[A; B]`, and `H = RQ'` is a natural non-orthogonal basis for the rowspace of `[A;B]`,
399+
where the top rows are most closely attributed to the `A` matrix, and the bottom to the `B` matrix.
400+
The multi-cosine/sine matrices `C` and `S` provide a multi-measure of how much `A` vs how much `B`,
401401
and `U` and `V` provide directions in which these are measured.
402402
403403
# Examples

0 commit comments

Comments
 (0)