back2base back2base method - check for spacebase, transform thereto
domaths helper function to do maths on matrix object
This function is called by:
SOURCE CODE
0001 function o = not(o1)
0002 % overloaded not function
0003 %
0004 % $Id$
0005
0006 if isa(o1, 'maroi'),o1 = back2base(o1);end
0007 o = domaths('not', o1);