CSparse 3.4.5
See the version list below for details.
dotnet add package CSparse --version 3.4.5
NuGet\Install-Package CSparse -Version 3.4.5
<PackageReference Include="CSparse" Version="3.4.5" />
paket add CSparse --version 3.4.5
#r "nuget: CSparse, 3.4.5"
// Install CSparse as a Cake Addin #addin nuget:?package=CSparse&version=3.4.5 // Install CSparse as a Cake Tool #tool nuget:?package=CSparse&version=3.4.5
CSparse.NET provides numerical methods for sparse LU, Cholesky and QR decomposition of real and complex linear systems.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net40 is compatible. net403 was computed. net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.0
- No dependencies.
-
.NETFramework 4.5
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
NuGet packages (5)
Showing the top 5 NuGet packages that depend on CSparse:
Package | Downloads |
---|---|
BriefFiniteElement.Net
A Finite Element library for static and linear analysis of solids and structures. |
|
BriefFiniteElementNet.Common
Common object for Brief Finite Element |
|
FEALiTE2D
A fast and reliable finite element analysis library for 2D frame, beam and truss elements using C#. |
|
BriefFiniteElementNet.CustomElements
Custom elements (like quadrilatural or hexahedral) for BFE |
|
BriefFiniteElement.WpfControls
few controls for visualization of BriefFiniteELement.net object |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on CSparse:
Repository | Stars |
---|---|
BriefFiniteElementNet/BriefFiniteElement.Net
BriefFiniteElementDotNET (BFE.NET) is a library for linear-static Finite Element Method (FEM) analysis of solids and structures in .NET
|
Version | Downloads | Last updated |
---|---|---|
4.2.0 | 276 | 9/15/2024 |
4.1.0 | 445 | 6/14/2024 |
4.0.0 | 3,951 | 4/3/2024 |
3.8.1 | 3,226 | 11/15/2023 |
3.8.0 | 13,555 | 5/20/2023 |
3.7.0 | 1,290 | 5/4/2022 |
3.6.0 | 4,411 | 11/25/2021 |
3.5.0 | 8,576 | 1/14/2021 |
3.4.9 | 4,480 | 11/6/2020 |
3.4.7 | 1,238 | 8/28/2020 |
3.4.6 | 636 | 7/21/2020 |
3.4.5 | 1,681 | 6/11/2020 |
3.4.3 | 642 | 5/25/2020 |
3.4.2 | 684 | 5/13/2020 |
3.4.1 | 10,568 | 10/2/2019 |
3.4.0 | 813 | 9/15/2019 |
3.3.0 | 1,044 | 4/29/2019 |
3.2.3 | 2,829 | 11/30/2018 |
3.2.2 | 885 | 10/12/2018 |
3.2.1 | 830 | 9/17/2018 |
3.2.0 | 1,184 | 3/9/2018 |
3.1.10 | 983 | 3/6/2018 |
3.1.9 | 1,976 | 1/6/2017 |
3.1.4 | 1,649 | 9/19/2015 |
This release introduces the static SparseMatrix.AutoTrimStorage option, which enables control over hidden memory allocations in matrix addition and multiplication. By default, the matrix storage will be resized to exactly fit the non-zeros count, which involves new memory allocations. If you want to avoid this, set AutoTrimStorage to false.
Additional changes:
* Add public helper methods Helper.TrimStrorage(...) and Helper.SortIndices(...)
* Add DenseMatrix.OfJaggedArray(...)