elementNames
Class: bioma.ExpressionSet
Namespace: bioma
Retrieve or set element names of DataMatrix objects in ExpressionSet object
Syntax
ElmtNames = elementNames(ESObj)
ElmtNames = elementNames(ESObj, Subset)
NewESObj = elementNames(ESObj, Subset, NewElmtNames)
Description
 returns
a cell array of character vectors specifying the element names of
all the data elements (DataMatrix objects) stored in the ExptData
object in an ExpressionSet object.ElmtNames = elementNames(ESObj)
 returns
a cell array of character vectors specifying the element names of
a subset of the data elements (DataMatrix objects) in the ExptData
object in an ExpressionSet object. ElmtNames = elementNames(ESObj, Subset)
 replaces
the element names of the data elements (DataMatrix objects) specified
by NewESObj = elementNames(ESObj, Subset, NewElmtNames)Subset in ESObj,
an ExpressionSet object, with NewElmtNames,
and returns NewESObj, a new ExpressionSet
object. 
Input Arguments
  | Object of the   | 
  | One of the following to specify the element names of a subset of the data elements (DataMatrix objects) in the ExptData object of an ExpressionSet object: 
  | 
  | New element names for specific data elements (DataMatrix objects) within an ExpressionSet object, specified by one of the following: 
 The number of elements in   | 
Output Arguments
  | Cell array of character vectors specifying the element names of all or some of the data elements (DataMatrix objects) in the ExptData object of an ExpressionSet object.  | 
  | Object of the   | 
Examples
Construct an ExpressionSet object, ESObj,
as described in the Examples section
of the bioma.ExpressionSet class reference page.
Retrieve the element names of the DataMatrix objects in it:
% Retrieve element names of DataMatrix objects ENames = elementNames(ESObj);