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

% 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

 Respuesta aceptada

Más respuestas (1)

for c = 1 : height(Data)
Data{c, Data{c,:} == -32768} = missing;
end

Categorías

Más información sobre Data Types en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 23 de Abr. de 2019

Respondida:

el 23 de Abr. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by