Find a specific char in a cell and turn it into NaN
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Stephen23
le 15 Mar 2021
@Tobias Pfeifer: please upload a sample file by clicking the paperclip button.
Réponses (2)
DGM
le 16 Mar 2021
Modifié(e) : DGM
le 16 Mar 2021
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 commentaires
Stephen23
le 16 Mar 2021
Modifié(e) : Stephen23
le 16 Mar 2021
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 commentaires
Stephen23
le 16 Mar 2021
@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.
Voir également
Catégories
En savoir plus sur Data Type Conversion dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!