diff options
| author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2015-10-07 17:29:20 +0200 | 
|---|---|---|
| committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2015-10-07 17:59:04 +0200 | 
| commit | 1cc67c1e4d9b6b24c096f52d6f086a3f224ece8a (patch) | |
| tree | 90b057eed8ab76716486214b812c016798b62eb6 /matlab/tools | |
| parent | 11717f66b49fbe41faf923f267c6893ce9af46ad (diff) | |
| download | astra-1cc67c1e4d9b6b24c096f52d6f086a3f224ece8a.tar.gz astra-1cc67c1e4d9b6b24c096f52d6f086a3f224ece8a.tar.bz2 astra-1cc67c1e4d9b6b24c096f52d6f086a3f224ece8a.tar.xz astra-1cc67c1e4d9b6b24c096f52d6f086a3f224ece8a.zip | |
Add astra_mex_direct('FP3D'/'BP3D', ...)
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 | 
