Not sure this is the correct section of this site,but I have a question.
So,i`m using MathNet.Numerics to calculate a derivatives. I want to display them in console.
Code example
using System;
using MathNet.Numerics;
namespace math
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Func<double,double> f = x => 3 * Math.Pow(x, 3) + 2 * x - 6;
var test = Differentiate.DerivativeFunc(f, 1);
Console.WriteLine(test.ToString());
Console.ReadKey();
}
}
}