* Test method for 'ca.nengo.math.impl.SineFunction.map(float[])'
*/
public void testMap() {
SineFunction f = new SineFunction(0.5f);
TestUtil.assertClose(0f, f.map(new float[]{0f}), .00001f);
TestUtil.assertClose(1f, f.map(new float[]{(float)Math.PI}), .00001f);
TestUtil.assertClose(0.84147f, f.map(new float[]{2f}), .00001f);
}
/*
* Test method for 'ca.nengo.math.impl.SineFunction.multiMap(float[][])'