我加载了一个包含一些数据列的文件。第一行包含 ,CITY,YEAR2000 。
第一列有城市名称。其他列包含数字数据。
我正在尝试使用以下方法搜索特定城市:
data(data.CITY=='Athens',3:end)
在哪里
data = dataset('File','cities.txt','Delimiter',',')
但我收到一个错误
Undefined function 'eq' for input arguments of type 'cell'.
- - - - 更新 - - - - - - - - - - - - - - -
好的,使用:
data(find(strncmp(data.CITY,'Athens',length('Athens'))),3:end)