summaryrefslogtreecommitdiffstats
path: root/matlab
diff options
context:
space:
mode:
authorDaniel M. Pelt <D.M.Pelt@cwi.nl>2015-07-21 15:15:08 +0200
committerWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2015-07-23 11:57:20 +0200
commitdb8587475efd44bc728caa79cd7ae7120eaf045b (patch)
treeae02b0a5f39aaf41229724bb96bb2dbac71dacc8 /matlab
parent645122f4b365ce44849afda2ed8a711ae649ed76 (diff)
downloadastra-db8587475efd44bc728caa79cd7ae7120eaf045b.tar.gz
astra-db8587475efd44bc728caa79cd7ae7120eaf045b.tar.bz2
astra-db8587475efd44bc728caa79cd7ae7120eaf045b.tar.xz
astra-db8587475efd44bc728caa79cd7ae7120eaf045b.zip
Add matlab plugin .m file
Diffstat (limited to 'matlab')
-rw-r--r--matlab/tools/astra_mex_plugin.m24
1 files changed, 24 insertions, 0 deletions
diff --git a/matlab/tools/astra_mex_plugin.m b/matlab/tools/astra_mex_plugin.m
new file mode 100644
index 0000000..4159365
--- /dev/null
+++ b/matlab/tools/astra_mex_plugin.m
@@ -0,0 +1,24 @@
+function [varargout] = astra_mex_plugin(varargin)
+%------------------------------------------------------------------------
+% Reference page in Help browser
+% <a href="matlab:docsearch('astra_mex_plugin' )">astra_mex_plugin</a>.
+%------------------------------------------------------------------------
+%------------------------------------------------------------------------
+% This file is part of the ASTRA Toolbox
+%
+% Copyright: 2010-2015, iMinds-Vision Lab, University of Antwerp
+% 2014-2015, CWI, Amsterdam
+% License: Open Source under GPLv3
+% Contact: astra@uantwerpen.be
+% Website: http://sf.net/projects/astra-toolbox
+%------------------------------------------------------------------------
+% $Id$
+if nargout == 0
+ astra_mex_plugin_c(varargin{:});
+ if exist('ans','var')
+ varargout{1} = ans;
+ end
+else
+ varargout = cell(1,nargout);
+ [varargout{:}] = astra_mex_plugin_c(varargin{:});
+end \ No newline at end of file