| 123456789101112131415161718192021222324 |
- /*
- * Academic License - for use in teaching, academic research, and meeting
- * course requirements at degree granting institutions only. Not for
- * government, commercial, or other organizational use.
- *
- * descrambler.h
- *
- * Code generation for function 'descrambler'
- *
- */
- #ifndef DESCRAMBLER_H
- #define DESCRAMBLER_H
- /* Include files */
- /* Function Declarations */
- extern void descramble(float *value, float t, const float B1[9], const
- float A1[9], const float B2[19], const float A2[19],
- float Z1[8], float Z2[18]);
- #endif
- /* End of code generation (descrambler.h) */
|