function setArray(this,A)
%SETARRAY  Writes array value.

%   Copyright 1986-2003 The MathWorks, Inc.
%   $Revision: 1.1.6.1 $  $Date: 2004/12/26 21:32:32 $
A = this.MetaData.setData(A);
try
   % Store array
   this.Storage.setArray(A,this.Variable);
catch
   % Write error
   error('Value of variable %s could not be written.',this.Variable.Name)
end
