back2base method - check for spacebase, transform thereto $Id$
0001 function o = back2base(o) 0002 % back2base method - check for spacebase, transform thereto 0003 % 0004 % $Id$ 0005 0006 spb = my_classdata('spacebase'); 0007 if isempty(spb) 0008 error('Cannot do arithmetic without defined base space'); 0009 end 0010 o = maroi_matrix(o, spb);