| Bioinformatics Toolbox™ | ![]() |
DMObjNew =
dmbsxfun(Func, DMObj1, DMObj2)
| Func | Function handle for an M-file function or a built-in function. For more information on built-in functions, see bsxfun. |
| DMObj1, DMObj2 | Either of the following:
At least one of these input arguments must be a DataMatrix object. |
| DMObjNew | DataMatrix object or MATLAB numeric array created from element-by-element binary operation of two DataMatrix objects with singleton expansion enabled. |
DMObjNew = dmbsxfun(Func, DMObj1, DMObj2) applies an element-by-element binary operation to the DataMatrix objects DMObj1 and DMObj2, with singleton expansion enabled. Func is a function handle, and can be for an M-file function or a built-in function. For more information on built-in functions, see bsxfun.
DMObj1 and DMObj2 can be DataMatrix objects or MATLAB numeric arrays; however, at least one of these input arguments must be a DataMatrix object. DMObj1 and DMObj2 must have the same number of rows or the same number or columns. If they don't have the same number of rows, then one must be a row vector and its rows are expanded down to be equal to the larger matrix. If they don't have the same number of columns, then one must be a column vector and its columns are expanded across to be equal to the larger matrix.
DMObjNew is a DataMatrix object, unless the larger input argument is a MATLAB numeric array; then DMObjNew is also a numeric array. The size (number of rows and columns) of DMObjNew is equal to the larger of the two input arguments. The row names and column names of DMObjNew come from the larger input argument, or, if both inputs are the same size, from the first input argument.
Use the DataMatrix constructor function to create a DataMatrix object.
A = bioma.data.DataMatrix(magic(3), 'RowNames', true, 'ColNames',true)
Use the built-in function @minus to subtract the column means from this DataMatrix object.
A = dmbsxfun(@minus, A, mean(A))
Bioinformatics Toolbox function: DataMatrix (object constructor)
Bioinformatics Toolbox object: DataMatrix object
MATLAB function: bsxfun
![]() | dmarrayfun (DataMatrix) | dolayout (biograph) | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |