How to pass name-value-pair arguments to templateTree() as a struct?

3 ビュー (過去 30 日間)
Tobias
Tobias 2014 年 8 月 25 日
編集済み: Sugar Daddy 2020 年 7 月 2 日
I am trying to group multiple name-value pair arguments and pass them to templateTree() as one. The usual call would be, e.g.:
templateTree('Surrogate','off','Prune','on','QEToler',1e-10)
I would like something like this:
opts = struct('Surrogate','off','Prune','on','QEToler',1e-10)
templateTree(opts)
If I try that the following error is shown:
Error using internal.stats.parseArgs (line 42)
Wrong number of arguments.
Error in classreg.learning.FitTemplate.make (line 38)
[usertype,~,modelArgs] = ...
Error in templateTree (line 120)
temp = classreg.learning.FitTemplate.make('Tree',varargin{:});
So if templateTree() cannot handle structs as input arguments, is there another way to achieve the same thing? Or is this somehow possible with structs?
Thanks!
  2 件のコメント
Pontus Vikstål
Pontus Vikstål 2019 年 7 月 1 日
I have similar question!

サインインしてコメントする。

回答 (1 件)

Sugar Daddy
Sugar Daddy 2020 年 7 月 2 日
編集済み: Sugar Daddy 2020 年 7 月 2 日

Daddy Views

T_T= templateTree('Surrogate','off','Prune','on','QEToler',1e-10);
opts = {'Surrogate','off','Prune','on','QEToler',1e-10};
T_T_O = templateTree(opts{:});
Now check if they are equal
assert(isequal(T_T_O,T_T))

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by