Changeset 138 for trunk/src/octave


Ignore:
Timestamp:
Nov 13, 2005, 10:24:25 PM (19 years ago)
Author:
dkearney
Message:

1) addition of octave/matlab test scripts, some still need work
2) the rpLibPutDoubleId and rpLibPutStringId functions are not quite working.
3) minor fixes to src/octave/rpLibPutDouble.cc and src/octave/rpUnitsGetBasis.cc

Location:
trunk/src/octave
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/octave/rpLibPutDouble.cc

    r135 r138  
    6161        if ( args(0).is_real_scalar() &&
    6262             args(1).is_string()      &&
    63              args(2).is_string()      &&
     63             args(2).is_real_scalar() &&
    6464             args(3).is_real_scalar()   ) {
    6565
  • trunk/src/octave/rpUnitsGetBasis.cc

    r135 r138  
    6363                        retHandle =
    6464                            storeObject_UnitsStr(myBasis->getUnitsName());
    65                         // adjust error code
    66                         if (retHandle >= 0) {
    67                             err = 0;
    68                         }
     65                    }
     66
     67                    // adjust error code
     68                    // if there is a basis retHandle will be a positive value
     69                    // if storing was successful. retHandle will be zero if
     70                    // storing failed.
     71                    // if there is no basis, myBasis will be null and
     72                    // retHandle will not change from its original negative
     73                    // value
     74                    if (retHandle != 0) {
     75                        err = 0;
    6976                    }
    7077                }
Note: See TracChangeset for help on using the changeset viewer.