Neural Network Toolbox | ![]() ![]() |
Combine a cell array of matrices into one matrix
Syntax
Description
This function operates as shown below.
m = cell2mat(C)
C -
Cell array of matrices: {M11 M12...; M21 M22...;...}
M -
Single matrix: [M11 M12...; M21 M22...;...]
Examples
c = {[1 2] [3]; [4 5; 6 7] [8; 9]}; m = cell2mat(c)
See Also
![]() | calcperf | combvec | ![]() |