Skip to content

ACCtools/SINNLS.jl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SI-NNLS+ implementation using Julia

All core code is copyrighted by the authors of the paper. The purpose of this module is to improve the interface and make it easier to use regardless of the type of type sparse matrix or matrix.

using SINNLS, SparseArrays

A = [2.0 2.0;2.0 8.0]
B = [2.0,6.0]
As = sparse(A)

ws = SI_NNLS(As, B) # Sparse matrix input
w = SI_NNLS(A, B) # Normal matrix input

[1] A Fast Scale-Invariant Algorithm for Non-negative Least Squares with Non-negative Data (2022)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Julia 100.0%