Neural Network Toolbox | Search  Help Desk |
nncopy | Examples |
nncopy(x,m,n)
nncopy(X,M,N)
takes two arguments,
and returns a new (R*M
) x (C*N
) matrix (or cell array).
x1 = [1 2 3; 4 5 6]; y1 = nncopy(x1,3,2) x2 = {[1 2]; [3; 4; 5]} y2 = nncopy(x2,2,3)