controlconstrain

PURPOSE ^

Go through all parameters and call the corresponding constraining module

SYNOPSIS ^

function parameters=controlconstrain(parameters,m,params,control_types);

DESCRIPTION ^

Go through all parameters and call the corresponding constraining module

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function parameters=controlconstrain(parameters,m,params,control_types);
0002 %Go through all parameters and call the corresponding constraining module
0003 
0004 for n=1:length(control_types),
0005 
0006     parameters{n}=eval(['ConstrainControlParameter' control_types{n} '(parameters{' num2str(n) '},m,params);']);
0007 
0008 end

Generated on Sun 29-Mar-2009 20:22:55 by m2html © 2003