diff options
| author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2018-12-23 16:26:46 +0100 |
|---|---|---|
| committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2018-12-23 16:26:54 +0100 |
| commit | 0c0a8fd4a0a41aca159dbcc4c363d9c790e3d1f3 (patch) | |
| tree | 308a6b25dcfe25004b77cb6fb403997012aa4a90 | |
| parent | d86dc2ebdca8b833a500738ed72f579bb34add65 (diff) | |
Fix return value order in sample
| -rw-r--r-- | samples/matlab/s010_supersampling.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/matlab/s010_supersampling.m b/samples/matlab/s010_supersampling.m index 7e52bc9..ca9bb21 100644 --- a/samples/matlab/s010_supersampling.m +++ b/samples/matlab/s010_supersampling.m @@ -20,7 +20,7 @@ cfg_proj.VolumeGeometry = vol_geom; proj_id = astra_mex_projector('create', cfg_proj); -[sinogram3 sinogram_id] = astra_create_sino(P, proj_id); +[sinogram_id sinogram3] = astra_create_sino(P, proj_id); figure(1); imshow(P, []); figure(2); imshow(sinogram3, []); |
