need to convert a cell into a vector number
1 view (last 30 days)
Show older comments
Hello everyone,
I need to convert a 1*1 cell into a vector array, below an example:
from this :

to this:

Which is the easiest way to do it?
Thank you so much in advcance! :)
3 Comments
Accepted Answer
Stephen23
on 29 Apr 2022
C = {'80,47,109,44,104,40'} % why is this in a scalar cell array?
V = sscanf(C{:},'%f,',[1,Inf])
More Answers (0)
See Also
Categories
Find more on Characters and Strings 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!