want to convert vector to cell

6 views (last 30 days)
rishika yadav
rishika yadav on 27 Jul 2022
Answered: David Hill on 27 Jul 2022
i am dealing with a colum vectror A= [1 2 2 3 2 ]
need to convert this vector in a cell form with element seprated by commas A ={ '1','2','2','3','2'}

Accepted Answer

David Hill
David Hill on 27 Jul 2022
A= [1 2 2 3 2 ]
A = 1×5
1 2 2 3 2
B=mat2cell(num2str(A'),ones(1,length(A)),1)'
B = 1×5 cell array
{'1'} {'2'} {'2'} {'3'} {'2'}
Which is the same as:
C ={ '1','2','2','3','2'}
C = 1×5 cell array
{'1'} {'2'} {'2'} {'3'} {'2'}

More Answers (0)

Categories

Find more on Data Types in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!