Skip to content

Commit

Permalink
add reference
Browse files Browse the repository at this point in the history
  • Loading branch information
ranocha committed Mar 31, 2020
1 parent 8b187fc commit a286f38
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@ This is work in progress. Currently, the following functions are implemented.
- `group_sparse_total_variation_denoising(y::AbstractVector, λ::Number; group_size::Integer=1, max_iter::Integer=100)`
Compute `max_iter` iterations of the algorithm described by
[Selesnick and Chen (2013) Total variation denoising with overlapping group sparsity](https://doi.org/10.1109/ICASSP.2013.6638755).
- `fourier_pade(x, u, degree_num, degree_den)`
Compute the Fourier-Padé reconstruction of `u` with degrees
`(degree_num, degree_den)` and evaluate it at the points `x`,
cf. [Driscoll and Fornberg (2001) A Padé-based algorithm for overcoming the Gibbs phenomenon](https://doi.org/10.1023/A:1016648530648).
4 changes: 3 additions & 1 deletion src/fourier_pade.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
fourier_pade(x, u, degree_num, degree_den)
Compute the Fourier-Padé reconstruction of `u` with degrees
`(degree_num, degree_den)` and evaluate it at the points `x`.
`(degree_num, degree_den)` and evaluate it at the points `x`, cf.
Driscoll and Fornberg (2001) A Padé-based algorithm for overcoming the Gibbs phenomenon,
doi: 10.1023/A:1016648530648.
"""
function fourier_pade(x, u, degree_num, degree_den)
N0 = length(u)
Expand Down

0 comments on commit a286f38

Please sign in to comment.