descrambler.h 626 B

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