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