summaryrefslogtreecommitdiffstats
path: root/samples/s011_object_info.m
diff options
context:
space:
mode:
authorDaniel M. Pelt <D.M.Pelt@cwi.nl>2015-02-24 12:35:45 +0100
committerDaniel M. Pelt <D.M.Pelt@cwi.nl>2015-02-24 12:35:45 +0100
commit3cae1d138c53a3fd042de3d2c9d9a07cf0650e0f (patch)
tree72f1bf197b33cfb64f259089830910a9754e5893 /samples/s011_object_info.m
parente212ab0d4f84adafa0a2fe11f5e16f856504769a (diff)
downloadastra-3cae1d138c53a3fd042de3d2c9d9a07cf0650e0f.tar.gz
astra-3cae1d138c53a3fd042de3d2c9d9a07cf0650e0f.tar.bz2
astra-3cae1d138c53a3fd042de3d2c9d9a07cf0650e0f.tar.xz
astra-3cae1d138c53a3fd042de3d2c9d9a07cf0650e0f.zip
Added Python interface
Diffstat (limited to 'samples/s011_object_info.m')
-rw-r--r--samples/s011_object_info.m36
1 files changed, 0 insertions, 36 deletions
diff --git a/samples/s011_object_info.m b/samples/s011_object_info.m
deleted file mode 100644
index 61ecb83..0000000
--- a/samples/s011_object_info.m
+++ /dev/null
@@ -1,36 +0,0 @@
-% -----------------------------------------------------------------------
-% 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
-% -----------------------------------------------------------------------
-
-% Create two volume geometries
-vol_geom1 = astra_create_vol_geom(256, 256);
-vol_geom2 = astra_create_vol_geom(512, 256);
-
-% Create volumes
-v0 = astra_mex_data2d('create', '-vol', vol_geom1);
-v1 = astra_mex_data2d('create', '-vol', vol_geom2);
-v2 = astra_mex_data2d('create', '-vol', vol_geom2);
-
-% Show the currently allocated volumes
-astra_mex_data2d('info');
-
-
-astra_mex_data2d('delete', v2);
-astra_mex_data2d('info');
-
-astra_mex_data2d('clear');
-astra_mex_data2d('info');
-
-
-
-% The same clear and info command also work for other object types:
-astra_mex_algorithm('info');
-astra_mex_data3d('info');
-astra_mex_projector('info');
-astra_mex_matrix('info');