FUNCTION convert_to_operands_prcmfn
(* SCHEMA FUNCTIONAL_DATA_AND_SCHEMATIC_REPRESENTATION_MIM_LF; *)
FUNCTION convert_to_operands_prcmfn(srcdom : maths_space_or_function; prepfun
: LIST OF maths_function; finfun : maths_function_select) : LIST [2:?] OF
generic_expression;
LOCAL
operands : LIST OF generic_expression := [];
END_LOCAL;
INSERT(operands, srcdom, 0);
REPEAT i := 1 TO SIZEOF(prepfun);
INSERT(operands, prepfun[i], i);
END_REPEAT;
INSERT(operands, convert_to_maths_function(finfun), SIZEOF(prepfun) + 1);
RETURN (operands);
END_FUNCTION;
Referenced By
Defintion convert_to_operands_prcmfn is references by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:17:33-04:00