Ejemplo n.º 1
0
 public void Interpolate1d_Facts()
 {
     Assert.Equal("1d interpolator blah not found in cache", InterpolatorFunctions.Interpolate1d("blah", 0));
     InterpolatorFunctions.Create1dInterpolator("pwah", new[] { 1.0 }, new[] { 1.0 }, "Linear");
     Assert.Equal(1.0, InterpolatorFunctions.Interpolate1d("pwah", 0));
 }