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

2 ビュー (過去 30 日間)
Emily Browning
Emily Browning 2019 年 4 月 23 日
回答済み: Steven Lord 2019 年 4 月 23 日
% 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

採用された回答

Steven Lord
Steven Lord 2019 年 4 月 23 日
For this particular application, I recommend using standardizeMissing.

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2019 年 4 月 23 日
for c = 1 : height(Data)
Data{c, Data{c,:} == -32768} = missing;
end

カテゴリ

Help Center および File ExchangeDescriptive Statistics についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by