How to replace string by double in cell array
1 次查看(过去 30 天)
显示 更早的评论
I am importing an Excel file in Matlab using the readtable command. For some reason, one collumn in the dataset does not load as doubles (all number columns are identically formatted in the Excel file as much as I can tell) but as string characters:
prompting the deficient column:
>>T{3,1}{:,14}
ans =1699×1 cell array
I need to replace the strings in T{3,1}{:,14} with doubles.
The following command returns an error:
>> T{3,1}{:,14}=str2double(T{3,1}{:,14})
Conversion to cell from double is not possible.
If is use:
T{3,1}{:,14}=num2cell(str2double(T{3,1}{:,14}))
the content of the column is no longer a double.
Do you have a solution to this (seemingly trivial) problem?
Thanks
2 个评论
采纳的回答
Sulaymon Eshkabilov
2020-5-19
D1D=readtable('test.xlsx');
D1D.cc=str2double(D1D.cc);
2 个评论
Sulaymon Eshkabilov
2020-5-19
if you need to remove NaN's, use:
Index=isnan(D1D.cc);
D1D.cc(Index)=0;
% similarly for other columns ...
更多回答(2 个)
Sulaymon Eshkabilov
2020-5-19
use a command: double()
To get back your strings use the command: char()
Walter Roberson
2020-5-19
filename = 'test.xlsx';
opt = detectImportOptions(filename);
opt = setvaropts(opt, 3, 'Type', 'double');
T = readtable(filename, opt);
5 个评论
Walter Roberson
2020-5-19
I tested on your sample file before posting. This code fixes the readtable so that it loads as numeric in the first place avoiding the cell
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!