良い疎行列ライブラリを知っている人はいますか? 大きな疎行列 (10,000 x 10,000) でクロネッカー積と乗算を行うために必要です。
現在、R を使用していますが、これはそれらを非常にうまく処理します。残念ながら、R を製品化することはできないため、代替手段を探しています。私はMath.net数値で遊んでいますが、少し遅いようです。
良い疎行列ライブラリを知っている人はいますか? 大きな疎行列 (10,000 x 10,000) でクロネッカー積と乗算を行うために必要です。
現在、R を使用していますが、これはそれらを非常にうまく処理します。残念ながら、R を製品化することはできないため、代替手段を探しています。私はMath.net数値で遊んでいますが、少し遅いようです。
A .NET open-source alternative to Math.NET Numerics is MetaNumerics. Most recent downloads can be accessed here. MetaNumerics has less functionality than Math.NET Numerics and it has not been updated for a year or so, but it does provide some sparse matrix functionality according to the API documentation.
There is also sparse matrix support in ALGLIB, which is available for multiple platforms including .NET. ALGLIB comes with both an open-source and commercial license.
I do not know if either of these libraries provide faster sparse matrix computation than Math.NET Numerics, though.