Add a frwrite_fread test to Matrix and making a change to the Vector one
[Math-GSL.git] / t / Fit.t
blobc435ac1c7ba46e4c053ffbb4a2d8f1d6b577c0b2
1 use Test::More 'no_plan';
2 use Math::GSL;
3 use Math::GSL::Fit;
4 use Data::Dumper;
5 use strict;
6 use warnings;
9 # needs some more useful tests
11     #RuntimeError Usage: gsl_fit_linear(x,xstride,y,ystride,n,c0,c1,cov00,cov01,cov11,sumsq);
12     Math::GSL::_assert_dies( sub { Math::GSL::Fit::gsl_fit_linear(0,0,0,0) } );