File: error.c1 /* 2 * Academic License - for use in teaching, academic research, and meeting 3 * course requirements at degree granting institutions only. Not for 4 * government, commercial, or other organizational use. 5 * 6 * error.c 7 * 8 * Code generation for function 'error' 9 * 10 */ 11 12 /* Include files */ 13 #include "rt_nonfinite.h" 14 #include "calculateTransformations.h" 15 #include "error.h" 16 17 /* Variable Definitions */ 18 static emlrtRTEInfo emlrtRTEI = { 17, 9, "error", 19 "C:\\Program Files (x86)\\MATLAB\\R2015b\\toolbox\\eml\\eml\\+coder\\+internal\\error.m" 20 }; 21 22 /* Function Definitions */ 23 void error(const emlrtStack *sp) 24 { 25 static const char_T varargin_1[4] = { 'a', 's', 'i', 'n' }; 26 27 emlrtErrorWithMessageIdR2012b(sp, &emlrtRTEI, "Coder:toolbox:ElFunDomainError", 28 3, 4, 4, varargin_1); 29 } 30 31 /* End of code generation (error.c) */ 32 |