Effacer les filtres
Effacer les filtres

Undefined function 'eq' for input arguments of type 'timetable'.

2 vues (au cours des 30 derniers jours)
Emily Browning
Emily Browning le 23 Avr 2019
% Data is a time table
x = height(Data);
y = width (Data);
for c=1:x
for v=1:y
if Data(c,v)== -32768;
Data(c,v)= missing;
end
end
end

Réponse acceptée

Steven Lord
Steven Lord le 23 Avr 2019
For this particular application, I recommend using standardizeMissing.

Plus de réponses (1)

Walter Roberson
Walter Roberson le 23 Avr 2019
for c = 1 : height(Data)
Data{c, Data{c,:} == -32768} = missing;
end

Catégories

En savoir plus sur Tables dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by