Skip to content
Snippets Groups Projects
Commit 24df481d authored by Houtan Bastani's avatar Houtan Bastani
Browse files

remove matlab2tikz requirement

parent eeedda5e
No related branches found
No related tags found
No related merge requests found
......@@ -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`.
......
......@@ -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'};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment