Clear Filters
Clear Filters

Convert double

2 views (last 30 days)
Xavier
Xavier on 14 Sep 2011
Hi,
I have a matrix like A: A=[1;1;1;1;1;1] A is 6*1 double I need to transform this double type matrix to a cell type matrix like B: B=[1;1;1;1;1;1] B is 6*1 cell
I cannot find any function to do the following transformation but it must be easy.
Thansk for you help
Xavier

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 14 Sep 2011
B = num2cell(A)
  1 Comment
Xavier
Xavier on 14 Sep 2011
thanks it works. I do not know how I could not find this one. Thanks a lot.

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!