NonLinearEquationsSolver icon indicating copy to clipboard operation
NonLinearEquationsSolver copied to clipboard

This repository aim to provide with an easy-to-use library to solve non-linear systems of equations.

Results 8 NonLinearEquationsSolver issues
Sort by recently updated
recently updated
newest added

Hi, Is there any plans for nuget package release? I would like to use this library but i need to copy/paste codes here to my codes. from maintenance and update...

Hi, Is this library capable of bypassing snap through points. Pls. have a look at this image: ![image](https://user-images.githubusercontent.com/7839141/218685406-f7e7577e-1272-4ec0-8e8d-67e8500a3d08.png) is the arclength controller in this library capable of solving such nonlinear...

Hi @EduardBargues, thank you for this helpful package! This PR adds a MIT license file to this repository so the solvers described here can be used by others.

I think it would be good to have some cleanups. This repo have three branches: - master - sparse-matrix : support of sparse matrix (#2) - remove-math-net: remove Math.Net dependency...

Filled extra info for auto building nuget package. Note that auto generation of nuget package is not enabled, you can simply enable it with the checkbox in green rectangle in...

I played around with the `ILinearSolver` interface of the `sparse-matrices` branch. Here's an implemetation which comes with zero additional memory allocations (using a custom [LU](https://github.com/wo80/mathnet-extensions/blob/master/src/Numerics/LinearAlgebra/Double/Factorization/ReusableLU.cs) implementation): ```c# class OptimizedLinearSolverForTesting :...

@EduardBargues Removing the Math.NET dependency would be great. You could either use arrays like CSparse.NET (see Vector helper class) or implement a simple vector type which wraps a double array....