array of numbers to chars in separate cells
Show older comments
Hi, I would like to know how to get separate cells with chars from number array:
from
F=[1 20 30 100];
to
E={'1','20','30','100'};
Accepted Answer
More Answers (2)
Honglei Chen
on 30 Apr 2012
E = mat2cell(F,1,ones(1,4)])
Tomas
on 30 Apr 2012
0 votes
Categories
Find more on Operators and Elementary Operations 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!