Multidimensional Newton-Raphson method

Revision as of 17:59, 12 March 2018 by rosettacode>Borneq (code - begin)

Create a program that finds and outputs the root of a system of nonlinear equations using Newton-Raphson metod.

Task
Multidimensional Newton-Raphson method
You are encouraged to solve this task according to the task description, using any language you may know.
Task

C#

For matrix inversion and matrix and vector definitions - see C# source from Gauss-Jordan matrix inversion <lang C#> </lang> <lang C#> using System;

namespace Rosetta {

   class Program
   {
       static void Main(string[] args)
       {
       }
   }

} </lang>

Output: