Ejemplo n.º 1
0
    private static void lobatto_polynomial_plot_test()

    //****************************************************************************80
    //
    //  Purpose:
    //
    //    LOBATTO_POLYNOMIAL_PLOT_TEST tests LOBATTO_POLYNOMIAL_PLOT.
    //
    //  Licensing:
    //
    //    This code is distributed under the GNU LGPL license.
    //
    //  Modified:
    //
    //    20 November 2014
    //
    //  Author:
    //
    //    John Burkardt
    //
    {
        int[]  ndx     = { 1, 2, 3, 4, 5, 6, 7 };
        int    ndx_num = 7;
        string prefix  = "test";

        Console.WriteLine("");
        Console.WriteLine("LOBATTO_POLYNOMIAL_PLOT_TEST:");
        Console.WriteLine("  LOBATTO_POLYNOMIAL_PLOT plots Lobatto polynomials.");

        Lobatto.lobatto_polynomial_plot(ndx_num, ndx, prefix);
    }