diff --git a/README.md b/README.md index 726361795f3ee893cea6c6a33bbd8f315da7c10d..4fd89ec19f0fe00f7c3a9bfbba741fb122a8a492 100644 --- a/README.md +++ b/README.md @@ -262,7 +262,6 @@ Configure and make: - ```brew install bison``` - ```brew install boost``` - ```brew install gfortran``` - - ```brew install matlab2tikz --HEAD``` - ```brew install libmatio --with-hdf5``` - ```brew install slicot --with-default-integer-8``` - **(Optional)** To compile Dynare mex files for use on Octave, first install Octave following the [Simple Installation Instructions](http://wiki.octave.org/Octave_for_MacOS_X#Simple_Installation_Instructions_3). Then, you will probably also want to install graphicsmagick via Homebrew with `brew install graphicsmagick`. diff --git a/matlab/dynare_config.m b/matlab/dynare_config.m index 1e9ed323309a9e8f11ffa8b985ba17fa5743c547..5b1760a44d539484c787c48a9140f35c477635a0 100644 --- a/matlab/dynare_config.m +++ b/matlab/dynare_config.m @@ -147,23 +147,6 @@ else addpath([dynareroot '../mex/matlab/']); end -% matlab2tikz -if strncmp(computer, 'GLNX', 4) || ~isempty(regexpi(computer, '.*linux.*', 'once')) - if exist('matlab2tikz.m') == 0 && exist('/usr/share/matlab2tikz/matlab2tikz.m') == 2 - addpath('/usr/share/matlab2tikz'); - end -elseif strncmp(computer, 'MACI', 4) || ~isempty(regexpi(computer, '.*apple.*', 'once')) - if exist([dynareroot '../contrib/matlab2tikz/matlab2tikz.m']) == 2 - addpath([dynareroot '../contrib/matlab2tikz']); - elseif exist('/usr/local/share/matlab2tikz/matlab2tikz.m') == 2 - addpath('/usr/local/share/matlab2tikz'); - end -else - if exist([dynareroot '../contrib/matlab2tikz/matlab2tikz.m']) == 2 - addpath([dynareroot '../contrib/matlab2tikz']); - end -end - %% Set mex routine names mex_status = cell(1,3); mex_status(1,1) = {'mjdgges'};