MCPcopy Create free account
hub / github.com/davisking/dlib / sinc

Function sinc

examples/krls_ex.cpp:21–26  ·  view source on GitHub ↗

Here is the sinc function we will be trying to learn with the krls object.

Source from the content-addressed store, hash-verified

19// Here is the sinc function we will be trying to learn with the krls
20// object.
21double sinc(double x)
22{
23 if (x == 0)
24 return 1;
25 return sin(x)/x;
26}
27
28int main()
29{

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected