- Timestamp:
- Nov 16, 2005 1:09:17 PM (17 years ago)
- Location:
- trunk/src/matlab
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/matlab/rpUnitsConvertObjDbl.cc
r135 r141 19 19 int nrhs, const mxArray *prhs[]) 20 20 { 21 int result = 0;22 double retVal = 0;23 int fromObjHandle = 0;24 int toObjHandle = 0;25 RpUnits* fromObj = NULL;26 RpUnits* toObj = NULL;27 double value = 0;21 int result = 0; 22 double retVal = 0; 23 int fromObjHandle = 0; 24 int toObjHandle = 0; 25 const RpUnits* fromObj = NULL; 26 const RpUnits* toObj = NULL; 27 double value = 0; 28 28 29 29 /* Check for proper number of arguments. */ -
trunk/src/matlab/rpUnitsConvertObjStr.cc
r135 r141 20 20 int nrhs, const mxArray *prhs[]) 21 21 { 22 int result = 0;23 std::string retStr = "";24 int fromObjHandle = 0;25 int toObjHandle = 0;26 RpUnits*fromObj = NULL;27 RpUnits*toObj = NULL;28 double value = 0;29 int showUnits = 0;22 int result = 0; 23 std::string retStr = ""; 24 int fromObjHandle = 0; 25 int toObjHandle = 0; 26 const RpUnits* fromObj = NULL; 27 const RpUnits* toObj = NULL; 28 double value = 0; 29 int showUnits = 0; 30 30 31 31 /* Check for proper number of arguments. */ -
trunk/src/matlab/rpUnitsDefineUnit.cc
r135 r141 20 20 { 21 21 char *unitSymbol = NULL; 22 RpUnits* basis = NULL;22 const RpUnits* basis = NULL; 23 23 RpUnits* myUnit = NULL; 24 24 int retHandle = 0; -
trunk/src/matlab/rpUnitsFind.cc
r135 r141 20 20 { 21 21 char *unitSymbol = NULL; 22 RpUnits* myUnit = NULL;22 const RpUnits* myUnit = NULL; 23 23 int retHandle = 0; 24 24 -
trunk/src/matlab/rpUnitsGetBasis.cc
r135 r141 20 20 { 21 21 char *unitSymbol = NULL; 22 RpUnits* myBasis = NULL;23 RpUnits* myUnit = NULL;22 const RpUnits* myBasis = NULL; 23 const RpUnits* myUnit = NULL; 24 24 int retHandle = 0; 25 25 int unitsHandle = 0; -
trunk/src/matlab/rpUnitsGetExponent.cc
r135 r141 19 19 int nrhs, const mxArray *prhs[]) 20 20 { 21 int unitsHandle = 0;22 RpUnits*unitsObj = NULL;23 const char* retString = NULL;24 double retVal = 0.0;21 int unitsHandle = 0; 22 const RpUnits* unitsObj = NULL; 23 const char* retString = NULL; 24 double retVal = 0.0; 25 25 26 26 /* Check for proper number of arguments. */ -
trunk/src/matlab/rpUnitsGetUnits.cc
r135 r141 19 19 int nrhs, const mxArray *prhs[]) 20 20 { 21 int unitsHandle = 0;22 RpUnits*unitsObj = NULL;23 const char* retString = NULL;21 int unitsHandle = 0; 22 const RpUnits* unitsObj = NULL; 23 const char* retString = NULL; 24 24 25 25 /* Check for proper number of arguments. */ -
trunk/src/matlab/rpUnitsGetUnitsName.cc
r135 r141 19 19 int nrhs, const mxArray *prhs[]) 20 20 { 21 int unitsHandle = 0;22 RpUnits*unitsObj = NULL;23 const char* retString = NULL;21 int unitsHandle = 0; 22 const RpUnits* unitsObj = NULL; 23 const char* retString = NULL; 24 24 25 25 /* Check for proper number of arguments. */ -
trunk/src/matlab/rpUnitsMakeMetric.cc
r135 r141 19 19 int nrhs, const mxArray *prhs[]) 20 20 { 21 RpUnits* basis= NULL;22 int retVal= 0;23 int basisHandle = 0;24 int retIndex= 0;21 const RpUnits* basis = NULL; 22 int retVal = 0; 23 int basisHandle = 0; 24 int retIndex = 0; 25 25 26 26 /* Check for proper number of arguments. */
Note: See TracChangeset
for help on using the changeset viewer.