About 2,540,000 results
Open links in new tab
  1. cell - Cell array - MATLAB - MathWorks

    A cell array is a data type with indexed data containers called cells, where each cell can contain any type of data.

  2. Cell Arrays - MATLAB & Simulink - MathWorks

    To access the contents of a cell, enclose indices in curly braces, such as c{1} to return 42 and c{3} to return "abcd". For more information, see Access Data in Cell Array. Cell arrays are …

  3. Access Data in Cell Array - MATLAB & Simulink - MathWorks

    Access Data in Cell Array Basic Indexing A cell array is a data type with indexed data containers called cells. Each cell can contain any type of data. Cell arrays are often used to hold data …

  4. Create Cell Array - MATLAB & Simulink - MathWorks

    Like all MATLAB® arrays, cell arrays are rectangular, with the same number of cells in each row. C is a 2-by-3 cell array. You also can use the {} operator to create an empty 0-by-0 cell array.

  5. Add or Delete Cells in Cell Array - MATLAB & Simulink

    Cell arrays follow the same basic rules for expansion, concatenation, and deletion as other types of MATLAB® arrays. However, you can index into a cell array in two ways: with curly braces {} …

  6. cellfun - Apply function to each cell in cell array - MATLAB

    This MATLAB function applies the function func to the contents of each cell of cell array C, one cell at a time.

  7. iscell - Determine if input is cell array - MATLAB - MathWorks

    This MATLAB function returns 1 (true) if A is a cell array.

  8. celldisp - Display cell array contents - MATLAB - MathWorks

    This MATLAB function recursively displays the contents of a cell array.

  9. cell2mat - Convert cell array to ordinary array - MATLAB

    Oct 11, 2012 · This MATLAB function converts a cell array to an ordinary array.

  10. num2cell - Convert array to cell array with consistently sized cells ...

    This MATLAB function converts array A into cell array C by placing each element of A into a separate cell in C.