Navigation

Operators and Keywords

Function List:

C++ API

Built-in Function: y = cellindexmat (x, varargin)

Perform indexing of matrices in a cell array.

Given a cell array of matrices x, this function computes

Y = cell (size (X));
for i = 1:numel (X)
 Y{i} = X{i}(varargin{:});
endfor

See also: cellslices, cellfun.

Package: octave