From: Matt Fig on
If this doesn't serve as an example, you really need to come up with something to show, as us suggests:


>> C = {int32(9);double(pi);uint8(3)} % Explicitly different data types.
C =
[ 9]
[3.14159265358979]
[ 3]
>> B = cellfun(@double,C)
B =
9
3.14159265358979
3
>> whos
Name Size Bytes Class Attributes

B 3x1 24 double
C 3x1 193 cell
From: Ryan Utz on
us: I don't know how to NOT top-post! Please let me know. All I did was hit the "reply to this message below". How do I not reply so it doesn't bump it to the top?

Matt: Thank you! The function "cellfun" is the correct syntax, not "cellfunc" as suggested above.
From: us on
"Ryan Utz" <rutz(a)al.umces.edu> wrote in message <hv6fvo$hls$1(a)fred.mathworks.com>...
> us: I don't know how to NOT top-post! Please let me know.

well... just bottom-post...

:-)

ie,
- go to the very end of the very message...
- then post your very comment...

us