Lines Matching refs:test_inputs
116 var test_inputs = []; variable
117 for (var i = -10000; i < 10000; i += 177) test_inputs.push(i/1257);
120 test_inputs.push(0);
121 test_inputs.push(0 + epsilon);
122 test_inputs.push(0 - epsilon);
123 test_inputs.push(Math.PI/2);
124 test_inputs.push(Math.PI/2 + epsilon);
125 test_inputs.push(Math.PI/2 - epsilon);
126 test_inputs.push(Math.PI);
127 test_inputs.push(Math.PI + epsilon);
128 test_inputs.push(Math.PI - epsilon);
129 test_inputs.push(- 2*Math.PI);
130 test_inputs.push(- 2*Math.PI + epsilon);
131 test_inputs.push(- 2*Math.PI - epsilon);
134 for (var i = 0; i < test_inputs.length; i++) {
135 var x = test_inputs[i];
152 var err_rms = Math.sqrt(squares[0] / test_inputs.length / 2);