source: issm/trunk/src/mex/Gradj/Gradj.h@ 11527

Last change on this file since 11527 was 11527, checked in by Mathieu Morlighem, 13 years ago

merged trunk-jpl and trunk for revision 11526

File size: 752 bytes
Line 
1/*
2 Gradj.h
3*/
4
5#ifndef _GRADJ_H
6#define _GRADJ_H
7
8/* local prototypes: */
9void GradjUsage(void);
10
11#include "../../c/modules/modules.h"
12#include "../../c/Container/Container.h"
13#include "../../c/shared/shared.h"
14#include "../../c/EnumDefinitions/EnumDefinitions.h"
15
16#undef __FUNCT__
17#define __FUNCT__ "Gradj"
18
19/* serial input macros: */
20#define ELEMENTS (mxArray*)prhs[0]
21#define NODES (mxArray*)prhs[1]
22#define VERTICES (mxArray*)prhs[2]
23#define LOADS (mxArray*)prhs[3]
24#define MATERIALS (mxArray*)prhs[4]
25#define PARAMETERS (mxArray*)prhs[5]
26
27/* serial output macros: */
28#define GRADG (mxArray**)&plhs[0]
29#define NORMLIST (mxArray**)&plhs[1]
30
31/* serial arg counts: */
32#undef NLHS
33#define NLHS 2
34#undef NRHS
35#define NRHS 6
36
37#endif /* _GRADJ_H */
Note: See TracBrowser for help on using the repository browser.