Find a specific char in a cell and turn it into NaN
1 次查看(过去 30 天)
显示 更早的评论
Hi,
i need to plot some temperature data from a csv excel data. If the Sensors werent active, the value at this time says Error 4 or Error 6. Matlab cant really plot those values and my first attempt was to turn those values into NaN. But i cant really find anything to do this. I should mention, that im new to matlab and dont know more than the basics.
Thank you in advance!
2 个评论
回答(2 个)
DGM
2021-3-16
编辑:DGM
2021-3-16
Let's say you have your sensor value as a cell vector -- but it's full of non-numeric garbage:
rawsensval={'3','5','Error 9000','53','24','Another Error','4345'};
sensvalnumeric=cell2mat(cellfun(@(s) {str2double(s)}, rawsensval))
Here, str2double() converts any non-numeric entries to NaN, giving you a simple numeric vector.
This is what I use in my own log processing scripts. There may be more elegant methods.
0 个评论
Stephen23
2021-3-16
编辑:Stephen23
2021-3-16
F = 'UmgebungsmessungDez.csv';
S = detectImportOptions(F, 'Delimiter',';', 'VariableNamingRule','preserve');
X = false(1,numel(S.VariableOptions));
X(4:end) = true; % specify which columns should be numeric
S = setvaropts(S, X, 'Type','double', 'DecimalSeparator',',');
S = setvaropts(S,'DATE', 'Type','datetime', 'InputFormat','dd.MM.yyyy');
T = readtable(F,S)
T(2110:2119,:) % the first few rows with number data
2 个评论
Stephen23
2021-3-16
@Tobias Pfeifer: please remember to accept the answer that helped you most! Accepting and voting for answers is the easiest way you can show your appreciation to the volunteers on this forum.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!