필터 지우기
필터 지우기

How can I filter excel's data which the data that i want only have value larger than 80 only?

조회 수: 1 (최근 30일)
the data was like this in excel:
RT 1.1 2.2 3.3 4.4
Area 12 13 14 15
*Qual 40 89 39 90
i want to filter the data to become:
RT 2.2 4.4
Area 13 15
*Qual 89 90

채택된 답변

Walter Roberson
Walter Roberson 2013년 3월 26일
[num, txt] = xlsread('YourFile.xls');
num(:, num(:,3) <= 80) = [];

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by