Problem 1911. Find the index of the first occurrence of a value in a matrix
Given a matrix of scalars, find the first occurrence of -1 in each column. Output NaN for a column which does not contain the value. For example
input =
0 0 0 0
-1 -1 0 1
-1 1 0 -1
0 0 0 1Find row number of first instance of -1 in each column
output = [2 2 NaN 3]
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers63
Suggested Problems
-
Back to basics 19 - character types
271 Solvers
-
Vectorize the digits of an Integer
335 Solvers
-
Find out missing number from a vector of 9 elements
319 Solvers
-
Reverse the elements of an array
1105 Solvers
-
Find the position of last minimum value in an integer array with numbers
85 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!