Finding single digit number from the data

조회 수: 9 (최근 30일)
Seoyoung Cho
Seoyoung Cho 2020년 1월 28일
댓글: Rena Berman 2020년 5월 14일
What date(s) have at least 5 single-digit numbers within the winning number set?

답변 (1개)

Image Analyst
Image Analyst 2020년 1월 28일
Is this homework? Sounds like it.
Basically use csvread() or importdata() to read in the data. Then look at columns 4 - 9 and see which are 9 or less. Untested code:
lessThan9 = data(:, 4:9) <= 9; % Logical array of what values are less than 9.
% Find out which rows have at least 5 less than 9
sums = sum(lessThan9, 2);
goodRows = sums >= 5;
% Get the dates in the separate arrays for month, day, and year
% (same format that it gave the data to us in).
goodMonths = data(goodRows, 1);
goodDays = data(goodRows, 2);
goodYears = data(goodRows, 3);
theSums = sums(goodRows)
% For fun, print them out.
for k = 1 : length(goodMonths)
fprintf('%d - %d - %d had % numbers less than or equal to 9.\n'...
goodMonths(k), goodDays(k), goodYears(k), theSums(k))
end

카테고리

Help CenterFile Exchange에서 Audio and Video Data에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by