init commit

This commit is contained in:
2026-06-22 11:39:50 +03:00
commit ba6f1bde22
128 changed files with 17716 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
// User include file for libfec
// Copyright 2004-2014, Phil Karn, KA9Q
// May be used under the terms of the GNU Lesser General Public License (LGPL)
#ifndef _SIM_H_
#define _SIM_H_
// Useful utilities for simulation
double normal_rand(double mean, double std_dev);
unsigned char addnoise(int sym, double signal, double noise);
void setup_channel(double signal,double noise);
unsigned char simulate(int data);
#endif /* _SIM_H_ */