Number of rows for given y
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Christopher Schoß
am 7 Mai 2022
Kommentiert: Voss
am 8 Mai 2022
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!
0 Kommentare
Akzeptierte Antwort
Voss
am 7 Mai 2022
M = randi(10,9,2) % random 9-by-2 matrix of integers between 1 and 10
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
3 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Graph and Network Algorithms finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!