function A = getArray(this)
%GETARRAY  Reads array value.
%
%   Array = GETARRAY(ValueArray)

%   Copyright 1986-2003 The MathWorks, Inc.
%   $Revision: 1.1.6.1 $  $Date: 2004/12/26 21:32:30 $
try
   A = getArray(this.Storage,this.Variable);
catch 
   % Read error
   A = [];
end
A = this.MetaData.getData(A);
