From: Nick Hale on
Hi, I'm banging my head against the wall trying to find a one-liner for unwrapping a cell, i.e. if c is a cell, I want to know if I can call whatever c{:} calls directly.

Thanks in advance,
Nick
From: Matt Fig on
How is C{:} not a one liner? What is the real application?
From: Walter Roberson on
Nick Hale wrote:
> Hi, I'm banging my head against the wall trying to find a one-liner for
> unwrapping a cell, i.e. if c is a cell, I want to know if I can call
> whatever c{:} calls directly.

No, it isn't possible with the full power of c{:} . _Some_ uses of {:}
can be done using subsref() .
From: us on
"Nick Hale" <nicholas.hale(a)hotmail.co.uk> wrote in message <hq4k7t$jb2$1(a)fred.mathworks.com>...
> Hi, I'm banging my head against the wall trying to find a one-liner for unwrapping a cell, i.e. if c is a cell, I want to know if I can call whatever c{:} calls directly.
>
> Thanks in advance,
> Nick

can you show an example(?)...

us