Multidimensional Newton-Raphson method: Difference between revisions

From Rosetta Code
Content added Content deleted
(Multidimensional Newton-Raphson method)
 
(code - begin)
Line 5: Line 5:
using Newton-Raphson metod.
using Newton-Raphson metod.
<br><br>
<br><br>
=={{header|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>
{{out}}<pre>
</pre>

Revision as of 17:59, 12 March 2018

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

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

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: