-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update #8
Update #8
Conversation
tinatorabi
commented
Jun 17, 2024
- fixed issue regarding htpynewlam
- I'm now using Julia logging @info and so on
- using latex in the inline docs now
- added Orthogonal Matching Pursuit(OMP)
- added Basis Pursuit Denoising(BPDN)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't read the many edits in detail, most look like code style related? The docs look better. Thank you.
…Pursuit.jl into tt "Merge completed"
Then this should be ready to merge and register? |
maybe not quite. The readme still needs at least an example. |
@cortner I just updated readme. :) |
README.md
Outdated
``` | ||
After completing the optimization process, the solution and the regularization parameter at each iteration `itn` can be accessed as follows: | ||
```jlcon | ||
julia> xx, λ = tracer[itn] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
drop the julia>
and add another comment how to extract the final iterate using tracer[end]
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a few comments small requested changes.
Thanks, @tinatorabi !
* `b` : `m`-vector. | ||
* `λin` : Nonnegative scalar. | ||
* `bl`, `bu` : `n`-vectors (bl lower bound, bu upper bound). | ||
* `active`, `state`, `y`, `S`, `R` : May be empty or output from `BPdual` with a previous value of `λ`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"corresponding value of"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sorry I'm not quite sure what you mean by this :)
Fixes #7 |