Undefined function 'eq' for input arguments of type 'timetable'.
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Emily Browning
am 23 Apr. 2019
Beantwortet: Steven Lord
am 23 Apr. 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
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 23 Apr. 2019
for c = 1 : height(Data)
Data{c, Data{c,:} == -32768} = missing;
end
0 Kommentare
Siehe auch
Kategorien
Mehr zu Descriptive Statistics finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!