挑出data中第一列为3的部分另存为data1: data1=data(find(data(:,1)==3),:) find(data(:,1)==3)返回第一列中所有3所处行的索引向量 转载于:https://www.cnblogs.com/litthorse/p/9265746.html