getAllOptimizedParameters ( mixed _complete , string _idOptimSystem ) : float
Returns a list of all optimized parameters
Example
console( getAlloptimizedParameters() ) //-> ["x" : 6.1783, "y": 7.6584]
See also
optimizedParameterParameters
_complete (optional)
Default:false. If false, returns the current value of the optimized parameter with optimization. If _complete = "best", it returns the best parameters (the cost function is the lowest). If _complete = true, it returns an array with all properties (initial, minimum, etc.). You have a property "best" for parameters with the best cost function. The property isLimit is false if the optimized value is between bounds, else it have the value "max" or "min".
_idOptimSystem (optional)
You can give an ID to your optimized parameter set. If you don't specify anything, the unique id of the script will be used. This parameter is especially useful if you mix several optimizers in one script or if you copy and paste them.