Convert single string with many numbers to vector

I have the following string
hue = '10 20 30 40 50';
That I want to turn into a vector of those 5 values
hue_vec = [10 20 30 40 50];
How can I do this? Thanks in advance!

 Accepted Answer

hue_vec = str2double(regexp(hue,'\d+','match'))

1 Comment

If you have decimals then the expressions would be:
hue_vec = str2double(regexp(hue,'\d*[\.]?\d*','match'))

Sign in to comment.

More Answers (3)

a=str2num(hue);

2 Comments

Also works great! Thanks!
Note that str2num relies on eval.

Sign in to comment.

Very simple, very efficient, no evil eval:
>> hue = '10 20 30 40 50';
>> vec = sscanf(hue,'%f',[1,Inf])
vec =
10 20 30 40 50

Categories

Find more on Sparse Matrices in Help Center and File Exchange

Asked:

on 31 Jul 2019

Commented:

on 7 Aug 2019

Community Treasure Hunt

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

Start Hunting!