Drexel dragonThe Math ForumDonate to the Math Forum



Search All of the Math Forum:

Views expressed in these public forums are not endorsed by Drexel University or The Math Forum.


Math Forum » Discussions » Software » comp.soft-sys.matlab

Topic: cell2mat with different data types and empty cells
Replies: 3   Last Post: Jan 17, 2013 6:42 PM

Advanced Search

Back to Topic List Back to Topic List Jump to Tree View Jump to Tree View   Messages: [ Previous | Next ]
Bruno Luong

Posts: 8,465
Registered: 7/26/08
Re: cell2mat with different data types and empty cells
Posted: Jan 17, 2013 5:36 PM
  Click to see the message monospaced in plain text Plain Text   Click to reply to this topic Reply

Few tips:

> c={uint8(8) pi []}

c =

[8] [3.1416] []

>> c(cellfun('isempty',c)) = {NaN} % Remove empty cells

c =

[8] [3.1416] [NaN]

>> [c{:}] % convert to lower class

ans =

8 3 0

>> cellfun(@double, c) % convert to specific class

ans =

8.0000 3.1416 NaN

% Bruno



Point your RSS reader here for a feed of the latest messages in this topic.

[Privacy Policy] [Terms of Use]

© Drexel University 1994-2013. All Rights Reserved.
The Math Forum is a research and educational enterprise of the Drexel University School of Education.