필터 지우기
필터 지우기

Number of rows for given y

조회 수: 1 (최근 30일)
Christopher Schoß
Christopher Schoß 2022년 5월 7일
댓글: Voss 2022년 5월 8일
Hey,
i have loaded a .mat file in my workspace which contains 9x2 double.
First column represents x-values and second column y-vaules.
I have a specific y-values and want to find the number of rows with that y-value.
How can I calculate that?
Thank you!

채택된 답변

Voss
Voss 2022년 5월 7일
M = randi(10,9,2) % random 9-by-2 matrix of integers between 1 and 10
M = 9×2
6 6 7 10 3 6 4 5 1 3 10 9 8 4 10 5 4 7
y = 6; % y value to find in the second column of M
nnz(M(:,2) == y) % number of times y appears in the second column of M
ans = 2
  댓글 수: 3
Christopher Schoß
Christopher Schoß 2022년 5월 8일
Thank you!! Appreciate your help!
Voss
Voss 2022년 5월 8일
You're welcome!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by