12345678910111213141516171819202122232425262728293031 |
- //
- // 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: distcal.h
- //
- // MATLAB Coder version : 5.3
- // C/C++ source code generated on : 27-Mar-2023 15:34:32
- //
- #ifndef DISTCAL_H
- #define DISTCAL_H
- // Include Files
- #include "rtwtypes.h"
- #include <cstddef>
- #include <cstdlib>
- // Function Declarations
- double b_distcal(const double PlatA_data[], const int PlatA_size[2],
- const double PlatB_data[], const int PlatB_size[2]);
- extern double distcal(const double PlatA_data[], const int PlatA_size[2],
- const double PlatB_data[], const int PlatB_size[2]);
- #endif
- //
- // File trailer for distcal.h
- //
- // [EOF]
- //
|