Skip to content

Commit ea4560b

Browse files
authored
expand docstring of lowrankfun (#231)
1 parent 4b8a4ae commit ea4560b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/Multivariate/LowRankFun.jl

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ export LowRankFun
77
"""
88
LowRankFun(f, space::TensorSpace)
99
10-
Return an approximation to a bivariate function in low rank form.
10+
Return an approximation to a bivariate function in a low-rank form
11+
```math
12+
f(x,y) = \\sum_i \\sigma_i \\phi_i(x) \\psi_i(y)
13+
```
14+
where ``\\sigma_i`` represent the highest singular values,
15+
and ``\\phi_i(x)`` and ``\\psi_i(y)`` are orthogonal bases. The summation is truncated
16+
after an acceptable tolerance is reached.
1117
1218
# Examples
1319
```jldoctest

0 commit comments

Comments
 (0)