File: packageDynare.m

package info (click to toggle)
dynare 7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 79,248 kB
  • sloc: cpp: 82,011; ansic: 28,583; objc: 12,573; yacc: 5,105; pascal: 2,374; lex: 1,502; python: 1,118; sh: 1,116; makefile: 605; lisp: 162; xml: 18
file content (15 lines) | stat: -rw-r--r-- 679 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function packageDynare(dynarefld, version, version_sanitized, logo)

% create tbx options
opts = matlab.addons.toolbox.ToolboxOptions(dynarefld, "dynare", ...
    ToolboxName = "Dynare", ...
    ToolboxVersion = version_sanitized, ...
    Summary = "Solves, simulates and estimates a wide class of economic models", ...
    AuthorName = "Dynare Team", ...
    ToolboxImageFile = logo, ...
    ToolboxMatlabPath = fullfile(dynarefld, "matlab"), ...
    OutputFile = fullfile(pwd, ['dynare-' version '.mltbx']), ...
    SupportedPlatforms = struct(Glnxa64 = false, Maci64 = false, MatlabOnline = true, Win64 = false));

% package toolbox
matlab.addons.toolbox.packageToolbox(opts)