size
Class: bioma.ExpressionSet
Namespace: bioma
Return size of ExpressionSet object
Syntax
NFeatSam
= size(ESObj
)
[NFeatures
, NSamples
]
= size(ESObj
)
DimLength
= size(ESObj
, Dim
)
Description
returns
a two-element row vector containing the number of features and number
of samples in an ExpressionSet object.NFeatSam
= size(ESObj
)
[
returns the number
of features and number of samples in an ExpressionSet object as separate
variables.NFeatures
, NSamples
]
= size(ESObj
)
returns
the length of the dimension specified by DimLength
= size(ESObj
, Dim
)Dim
.
Input Arguments
|
Object of the |
|
Scalar specifying the dimension of the ExpressionSet object. Choices are:
|
Examples
Construct an ExpressionSet object, ESObj
,
as described in the Examples section
of the bioma.ExpressionSet
class reference page.
Determine the number of features and samples in the ExpressionSet
object:
% Retrieve the number of features and samples NumFeatSam = size(ESObj)