GithubHelp home page GithubHelp logo

Comments (5)

wo80 avatar wo80 commented on August 20, 2024 1

I've pushed some code to https://github.com/wo80/csparse-interop. Have a nice weekend!

A simple test program could look like

namespace ConsoleApp
{
    using CSparse.Double;
    using CSparse.Double.Factorization;
    using CSparse.Interop.Umfpack;
    using System;

    class TestUmfpack
    {
        public static void Test(SparseMatrix A)
        {
            int n = A.RowCount;

            var x = Vector.Create(n, 1.0);
            var b = Vector.Create(n, 0.0);

            // Save true solution.
            var s = Vector.Clone(x);

            A.Multiply(x, b);

            Vector.Clear(x);

            using (var solver = new Umfpack(A))
            {
                solver.Solve(b, x);

                var info = solver.Info;

                Console.WriteLine("ordering: {0}", (UmfpackOrdering)info.ORDERING_USED);
                Console.WriteLine("strategy: {0}", (UmfpackStrategy)info.STRATEGY_USED);
                Console.WriteLine("  LU nnz: {0}", info.LU_ENTRIES);
                Console.WriteLine("   rcond: {0}", info.RCOND);

                Console.WriteLine("L2-Error: {0:0.00e00}", ComputeL2Error(x, s));
            }
        }

        public static double ComputeL2Error(double[] actual, double[] expected, bool relativeError = true)
        {
            var e = Vector.Clone(actual);

            Vector.Axpy(-1.0, expected, e);

            if (relativeError)
            {
                return Vector.Norm(e) / Vector.Norm(expected);
            }

            return Vector.Norm(e);
        }
    }
}

from csparse.net.

bigworld12 avatar bigworld12 commented on August 20, 2024

here is more information about the solver
https://people.sc.fsu.edu/~jburkardt/cpp_src/umfpack/umfpack.html
also the source from SuiteSparse
https://github.com/PetterS/SuiteSparse/tree/master/UMFPACK

from csparse.net.

wo80 avatar wo80 commented on August 20, 2024

I already have bindings for some of the SuiteSparse solvers (Cholmod, UMFPACK, SPQR) and I still plan to publish them here on Github (already mentioned in #7 (comment)).

It will be a separate project (CSparse.Interop). I don't have a lot of time to work on it, but if you're interested (and maybe want to contribute), I could publish the code I have so far.

from csparse.net.

bigworld12 avatar bigworld12 commented on August 20, 2024

that would be awesome ! i am already working on implementing such algorithms into c# as the current available solutions are very complicated to build and were last updated 3~6 years ago, so i will gladly try my best to help you

from csparse.net.

wo80 avatar wo80 commented on August 20, 2024

I've added a repository that contains a Visual Studio solution to compile SuiteSparse:
https://github.com/wo80/vs-suitesparse

Let me know if this works for you (the only tricky part should be setting up BLAS/LAPACK). I hope I will find some time to publish the C# bindings next week.

from csparse.net.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.