41 lines
820 B
C
41 lines
820 B
C
/*
|
|
* 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.
|
|
* File: nco.h
|
|
*
|
|
* MATLAB Coder version : 24.1
|
|
* C/C++ source code generated on : 2025-04-09 02:18:34
|
|
*/
|
|
|
|
#ifndef NCO_H
|
|
#define NCO_H
|
|
|
|
/* Include Files */
|
|
#include "rtwtypes.h"
|
|
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Function Declarations */
|
|
extern void nco(double fcw, double ptw, double clr, double acc, double *my_c,
|
|
double *my_s, double *acc_o);
|
|
|
|
extern void nco_initialize(void);
|
|
|
|
extern void nco_terminate(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
/*
|
|
* File trailer for nco.h
|
|
*
|
|
* [EOF]
|
|
*/
|