www.gusucode.com > mbcexpr 工具箱 matlab 源码程序 > mbcexpr/@cgdivexpr/evalAtInputs.m

    function out = evalAtInputs(obj, inputs)
%EVALATINPUTS Evaluate expression at given input values.
%
%  OUT = EVALATINPUTS(OBJ, INPUTS) returns the value of the expression at
%  the inputs values in INPUTS.  Product expressions tmultiply together the
%  first N inputs and then divide by the next M inputs.

%  Copyright 2000-2008 The MathWorks, Inc. and Ford Global Technologies, Inc.


out = pEval(obj, inputs);