Here is the sinc function we will be trying to learn with the krls object.
| 145 | // Here is the sinc function we will be trying to learn with the krls |
| 146 | // object. |
| 147 | double sinc(double x) |
| 148 | { |
| 149 | if (x == 0) |
| 150 | return 1; |
| 151 | return sin(x)/x; |
| 152 | } |
| 153 | |
| 154 | |
| 155 | void test_regression ( |
no outgoing calls
no test coverage detected