Get row number with certain data in it

조회 수: 7 (최근 30일)
Mert Gurer
Mert Gurer 2021년 9월 22일
댓글: Mert Gurer 2021년 9월 22일
Hello together,
i want to find a solution for my problem:
I have a 230x2 Matrix, which contains different numbers. I want the programm to tell me, which row contains numbers higher than 400.
How can i do that?
I tried the "find"-function but it didnt bring me to a useful result.
Thank you.
MG.

답변 (1개)

Stephen23
Stephen23 2021년 9월 22일
편집: Stephen23 2021년 9월 22일
"I tried the "find"-function but it didnt bring me to a useful result."
It works for me:
% Fake data:
M = randi(9,7,2);
M(5,1) = 789
M = 7×2
3 8 2 3 9 7 6 5 789 6 5 2 7 9
% Find row:
[R,~] = find(M>400)
R = 5

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by