C/C++
numc.asc
Associated article: Numerical C and DSP
Tags: C/C++ Open Source
_NUMERICAL C AND DSP_
by Kevin Leary
Listing One
#include <stdio.h>
#include <math.h>
#include <dspc.h>
static inline float sigmoid (float x){ return 1.f/(1.f+expf(-x));}
/* Simulating a backpropogation network: a ...


