getting error: Undefined function 'ge' for input arguments of type 'cell'.
显示 更早的评论
I just renewed my matlab licence and now my scripts aren't working. For example, I imported a large excel dataset called "data" which is 317x113 cell. I want to then filter the dataset by column 63. Specifically, I want to only keep the data where column 63 is greater than or equal to 0.2 and rename it the filtered dataset "data3":
target=0.2;
vi=find(data(:,63)>=target);
data(vi,:);
data3 = data(vi,:);
This script has been working perfectly for a year and now with the new matlab it doesn't work!
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Adding custom doc 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!