Skip to content

Commit

Permalink
[CI skip] update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ranocha committed Mar 19, 2020
1 parent 2971d72 commit 511c84d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ This is work in progress. Currently, the following functions are implemented.
[Condat (2013) A Direct Algorithm for 1-D Total Variation Denoising](https://doi.org/10.1109/LSP.2013.2278339).
An inplace version `total_variation_denoising!(dest::AbstractVector, source::AbstractVector, λ::Number)`
is also provided.
- `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).
8 changes: 2 additions & 6 deletions src/total_variation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,9 @@ end


"""
group_sparse_total_variation_denoising(y::AbstractVector, λ::Number, group_size::Integer=1)
group_sparse_total_variation_denoising(y::AbstractVector, λ::Number; group_size::Integer=1, max_iter::Integer=100)
Compute the solution of the group sparse total variation regularized least square problem
```math
\\min_x \\frac{1}{2} \\sum_{k} |y_k - x_k|^2 + \\lambda \\sum_{k} |x_{k+1} - x_{k}|
```
using the iterative algorithm of
Compute `max_iter` iterations of the algorithm described by
Selesnick and Chen (2013) Total variation denoising with overlapping group sparsity,
doi: 10.1109/ICASSP.2013.6638755.
"""
Expand Down

0 comments on commit 511c84d

Please sign in to comment.