29 lines
700 B
C
29 lines
700 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.
|
|
//
|
|
// getSimpackF.h
|
|
//
|
|
// Code generation for function 'getSimpackF'
|
|
//
|
|
|
|
|
|
#pragma once
|
|
|
|
// Include files
|
|
#include <cmath>
|
|
#include <cstdio>
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
#include "mex.h"
|
|
#include "emlrt.h"
|
|
#include "rtwtypes.h"
|
|
#include "calculateGravityForce_types.h"
|
|
|
|
// Function Declarations
|
|
void getSimpackF(const emlrtStack *sp, const real_T T_GC[144], const real_T T_O
|
|
[144], const real_T Fmat[54], real_T Flist[54]);
|
|
|
|
// End of code generation (getSimpackF.h)
|