Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 MATLAB 中有一个相当大的单元格数组,其中包含非常混合的数据,称为sales. 一列是商店标识符,该商店标识符是字母和数字的组合(即AF7-24M)。我想获取sales商店标识符等于特定商店标识符的所有行。我尝试做一些逻辑索引,但我无法让它工作......
sales
我也不想只遍历所有行,因为我需要多次执行此操作,这是一个相当缓慢的过程
您可以使用strcmp... 例如:
strcmp
strcmp(sales,'AF7-24M')
对于不区分大小写的字符串比较,请使用strcmpi代替strcmp.
strcmpi