celldisp

Displays the content of the cell array x.

Syntax

celldisp(x)

Inputs

x
Cell to be displayed.
Type: cell
Dimension: scalar | vector | matrix

Example

Simple celldisp example.

celldisp({1;2;3;4})
{1} =
1
{2} =
2
{3} =
3
{4} =
4