Parameterize 2D/3D• Parameterize[symbols] takes the given list of symbols (each of which must have a numeric value defined) unsets them and puts them in the parameters list with a current value equal to their previously defined value. • For example, (c = 3.5; Parameterize[{c}]) has the same effect as SetParameters[{c->3.5}]. • Upon success, Parameterize returns the entire parameters list. • See also: SetParameters. Further Examples Load the Modeler2D package. Add parameters to the system parameter list.
Out[2]= | |
Out[3]= | |
Remove some of the parameters and add some more.
Out[4]= | |
Out[6]= | |
Out[7]= | |
Remove all the parameters.
Out[8]= | |
|