// // I4 Utilities. // int i4_log_10 ( int i ); int i4_max ( int i1, int i2 ); int i4_min ( int i1, int i2 ); int i4_power ( int i, int j ); // // Real double precision General. // void r8ge_print ( int m, int n, double a[], string title ); void r8ge_print_some ( int m, int n, double a[], int ilo, int jlo, int ihi, int jhi, string title ); // // Real double precision Toeplitz. // double *r8to_dif2 ( int n ); double *r8to_indicator ( int n ); double *r8to_mtv ( int n, double a[], double x[] ); double *r8to_mv ( int n, double a[], double x[] ); void r8to_print ( int n, double a[], string title ); void r8to_print_some ( int n, double a[], int ilo, int jlo, int ihi, int jhi, string title ); double *r8to_random ( int n, int &seed ); double *r8to_sl ( int n, double a[], double b[] ); double *r8to_slt ( int n, double a[], double b[] ); double *r8to_to_r8ge ( int n, double a[] ); double *r8to_zeros ( int n ); // // R8VEC utilities. // double *r8vec_indicator1_new ( int n ); void r8vec_print ( int n, double a[], string title ); double *r8vec_uniform_01_new ( int n, int &seed ); double *r8vec_zeros_new ( int n );