You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All factorization functions in MatrixAlgebraKit accept an optional `alg` keyword argument that controls which algorithm is used and how it is configured.
9
-
By default, an appropriate algorithm is selected automatically based on the function and the array type.
9
+
By default, an appropriate algorithm is selected automatically based on the function and the input types.
10
10
This page explains how to override that default, what algorithm types are available, and how to configure them.
11
11
12
12
## The `alg` Keyword
@@ -15,7 +15,7 @@ The `alg` keyword is interpreted by [`MatrixAlgebraKit.select_algorithm`](@ref),
15
15
For example, for `qr_compact` these forms look like:
16
16
17
17
```julia
18
-
# Form 1: No alg — algorithm selected automatically based on function and array type.
18
+
# Form 1: No alg — algorithm selected automatically based on function and input type.
19
19
Q, R =qr_compact(A);
20
20
21
21
# Form 2: Symbol — creates Algorithm{:Householder}(; positive=false).
0 commit comments