remove matlab2tikz requirement

time-shift
Houtan Bastani 2014-02-13 18:20:01 +01:00
parent eeedda5e2d
commit 24df481dc7
2 changed files with 0 additions and 18 deletions

View File

@ -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`.

View File

@ -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'};