1% STK_GET_OPTIMIZABLE_PARAMETERS [overload STK function, internal]
2%
3% INTERNAL FUNCTION WARNING:
4%
5%    This function is currently considered as internal.  STK users that wish to
6%    experiment with parameter classes can already overload it, but should be
7%    aware that API-breaking changes are likely to happen in future releases.
8%
9% See also: stk_get_optimizable_parameters
10
11% Copyright Notice
12%
13%    Copyright (C) 2018 CentraleSupelec
14%
15%    Author:  Julien Bect  <julien.bect@centralesupelec.fr>
16
17% Copying Permission Statement
18%
19%    This file is part of
20%
21%            STK: a Small (Matlab/Octave) Toolbox for Kriging
22%               (http://sourceforge.net/projects/kriging)
23%
24%    STK is free software: you can redistribute it and/or modify it under
25%    the terms of the GNU General Public License as published by the Free
26%    Software Foundation,  either version 3  of the License, or  (at your
27%    option) any later version.
28%
29%    STK is distributed  in the hope that it will  be useful, but WITHOUT
30%    ANY WARRANTY;  without even the implied  warranty of MERCHANTABILITY
31%    or FITNESS  FOR A  PARTICULAR PURPOSE.  See  the GNU  General Public
32%    License for more details.
33%
34%    You should  have received a copy  of the GNU  General Public License
35%    along with STK.  If not, see <http://www.gnu.org/licenses/>.
36
37function value = stk_get_optimizable_parameters (model)
38
39value = stk_get_optimizable_parameters (model.prior);
40
41end % function
42