-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Write a function that computes a probability distribution over the rows or columns of a matrix,
- This distribution will be an approximation of the leverage score distribution.
- Should be computed using algorithm 1
If a distribution over the columns is desired it should be computed using the transpose of$A$ . Note that$\epsilon$ -FJT should be any sketching method
- Add a folder in
linear_samplers
calledinduced_distributions
- Add file in
linear_samplers/induced_distributions
to that folder that Implements function that takes in a matrix,$A$ , and Sketching method, and a boolean indicating if a row or column distribution should be used as input. Should sample from that distribution and perform algorithm 1. Should return aWeights
data structure - add include statement for file with method in
linear_samplers.jl
- Export function in
RLinearAlgebra.jl
- Add tests for the function
- Add docstring reference to the created function under the section
Matrix Induced Probability Distributions
indocs/src/api/linear_samplers.md
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request