24 lines
481 B
Matlab
24 lines
481 B
Matlab
|
function setup()
|
||
|
% function setup()
|
||
|
%
|
||
|
% setup openEMS Matlab/octave interface
|
||
|
%
|
||
|
% openEMS matlab/octave interface
|
||
|
% -----------------------
|
||
|
% author: Thorsten Liebig (2011)
|
||
|
|
||
|
disp('setting up openEMS matlab/octave interface')
|
||
|
|
||
|
% cd to directory of this file and restore current path at the end
|
||
|
current_path = pwd;
|
||
|
dir = fileparts( mfilename('fullpath') );
|
||
|
cd(dir);
|
||
|
|
||
|
if isOctave()
|
||
|
disp('compiling oct files')
|
||
|
mkoctfile -lhdf5 h5readatt_octave.cc
|
||
|
else
|
||
|
end
|
||
|
|
||
|
cd(current_path);
|