1234567891011121314151617181920212223242526272829303132333435 |
- //
- // 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: sort.h
- //
- // MATLAB Coder version : 5.3
- // C/C++ source code generated on : 27-Mar-2023 15:34:32
- //
- #ifndef SORT_H
- #define SORT_H
- // Include Files
- #include "rtwtypes.h"
- #include "coder_array.h"
- #include <cstddef>
- #include <cstdlib>
- // Function Declarations
- namespace coder {
- namespace internal {
- void sort(double x[16]);
- void sort(::coder::array<double, 2U> &x);
- } // namespace internal
- } // namespace coder
- #endif
- //
- // File trailer for sort.h
- //
- // [EOF]
- //
|