diff options
author | Willem Jan Palenstijn <wjp@usecode.org> | 2015-12-01 12:17:36 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <wjp@usecode.org> | 2015-12-01 12:17:36 +0100 |
commit | 44fb28ed0045253f79064a5e09c00ba20abe95d2 (patch) | |
tree | ade7be4ee2bf31877cc4c634bb2501e7679f88f3 /matlab/tools | |
parent | d4d7ae8c560e5511b6453ef8eca220677b504169 (diff) | |
parent | 37dd051faf2a8085c1abb5623eb5e79363471642 (diff) | |
download | astra-44fb28ed0045253f79064a5e09c00ba20abe95d2.tar.gz astra-44fb28ed0045253f79064a5e09c00ba20abe95d2.tar.bz2 astra-44fb28ed0045253f79064a5e09c00ba20abe95d2.tar.xz astra-44fb28ed0045253f79064a5e09c00ba20abe95d2.zip |
Merge pull request #95 from wjp/mex_direct
astra_mex_direct
Diffstat (limited to 'matlab/tools')
-rw-r--r-- | matlab/tools/astra_mex_direct.m | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/matlab/tools/astra_mex_direct.m b/matlab/tools/astra_mex_direct.m new file mode 100644 index 0000000..58c4fd2 --- /dev/null +++ b/matlab/tools/astra_mex_direct.m @@ -0,0 +1,24 @@ +function [varargout] = astra_mex_direct(varargin) +%------------------------------------------------------------------------ +% Reference page in Help browser +% <a href="matlab:docsearch('astra_mex_direct' )">astra_mex_data3d</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_direct_c(varargin{:}); + if exist('ans','var') + varargout{1} = ans; + end +else + varargout = cell(1,nargout); + [varargout{:}] = astra_mex_direct_c(varargin{:}); +end |