ContentsIndexReferenceHome
PreviousUpNext
mkFuncStr
MATLAB
str = mkFuncStr(cellArray)
Description

Converts the model evaluation cell array from an ATM structure into a pretty function call string for display purposes.

Parameters
Parameters 
Description 
cellArray [cell] 
Cell array holding the functional evaluation information for an atmospheric model. 
Return Values
Return Values 
Description 
str [char/cell] 
Character array (or cell array in the case of array of cell arrays) with the displayable function call. 
Examples

>> Atm = AtmStruct; 

>> str = mkFuncStr(Atm.Cn2Eval) 

  • Returns Cn2 function call for an Atm structures
>> Atm = ChangeAtm(AtmStruct,'alpha',[2,3,4]); 

>> ca = mkFuncStr({Atm.Cn2Eval}); 

  • Returns cell array of function calls for an array of Atm structures
 

See Also
Group
Made with Doc-O-Matic.
Copyright (c) 2009. All rights reserved.
What do you think about this topic? Send feedback!