simType('symbolic'); % Set the simulation type to 'symbolic' pNames = params(); % Assign a list of parameter names to the MATLAB variable 'pNames'. pDefs = params(); % Assign a list of parameter names to the MATLAB variable 'pDefs'. % These names will be replaced with the symbolic definitions. % % Replace the parameter names in pDefs with their definition: for i = 1:length(pNames) try: pDefs(i) = getParValue(pDefs(i)); catch end end