Splits a parameterstring of type "-param1=value1
-param2=value2 ...
" in a List
.
[paraml, err] = pars_paramstr(parameterstrng [, seperator])
Parameterstring "-param1=value1 -param2=value2 ..."
Characters which should be used to seperate the parameters [default=' ' (space)]
List of all parameter-value vectors.
Errorstring, or empty when no error occured.
The given parameterstring is seperated in his
parameter-value-vectors and returned as list.
paraml(1)(1)
ist the name of the first parameters,
paraml(1)(2)
the coresponding value.
Parameternames must not contain characters defined as seperator. Seperators are only allowed in values if the complete value is quoted (single or double).
Quotes are not allowed in the values, there ist no mechanic of escaping implemented.
(not matrix aware)
No warranty, there are no inputchecks.