Ignore:
Timestamp:
06/23/10 12:23:55 (15 years ago)
Author:
Eric.Larour
Message:

No more DofVec. New outputs from external results, in matlab form. Still have to handle the time and step

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/ExternalResults/BoolExternalResult.cpp

    r4143 r4166  
    177177}
    178178/*}}}1*/
     179/*FUNCTION BoolExternalResult::GetResultName(void); {{{1*/
     180char* BoolExternalResult::GetResultName(void){
     181        return  EnumAsString(this->enum_type);
     182}
     183/*}}}*/
     184/*FUNCTION BoolExternalResult::SetMatlabField(mxArray* dataref);{{{1*/
     185#ifdef _SERIAL_
     186char* BoolExternalResult::SetMatlabField(mxArray* dataref){
     187
     188        char* name=NULL;
     189        name=this->GetResultName();
     190        mxSetField( dataref, 0, name,mxCreateDoubleScalar((double)value));
     191}
     192#endif
     193/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.