Convert text cell to double

1 view (last 30 days)
Tristan Payer
Tristan Payer on 14 Nov 2015
Commented: Tristan Payer on 14 Nov 2015
hi, I have a Cell array like
'$88.10'
'$83.01'
'$80.22'
'$80.22'
how can I convert it to an array of doubles ?
Thanks
Tristan

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 14 Nov 2015
z = {'$88.10'
'$83.01'
'$80.22'
'$80.22'};
out = cellfun(@(x)str2double(x(2:end)),z);

More Answers (0)

Categories

Find more on Data Type Conversion 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!