123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // 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: sortIdx.h
- //
- // MATLAB Coder version : 5.3
- // C/C++ source code generated on : 27-Mar-2023 15:34:32
- //
- #ifndef SORTIDX_H
- #define SORTIDX_H
- // Include Files
- #include "rtwtypes.h"
- #include "coder_array.h"
- #include <cstddef>
- #include <cstdlib>
- // Function Declarations
- namespace coder {
- namespace internal {
- void merge(int idx[16], double x[16], int offset, int np, int nq, int iwork[16],
- double xwork[16]);
- void merge_block(::coder::array<int, 2U> &idx, ::coder::array<double, 2U> &x,
- int offset, int n, int preSortLevel,
- ::coder::array<int, 1U> &iwork,
- ::coder::array<double, 1U> &xwork);
- } // namespace internal
- } // namespace coder
- #endif
- //
- // File trailer for sortIdx.h
- //
- // [EOF]
- //
|