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 comments
Loading...
Problem Recent Solvers63
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2812 Solvers
-
Project Euler: Problem 6, Natural numbers, squares and sums.
2535 Solvers
-
235 Solvers
-
Getting the absolute index from a matrix
254 Solvers
-
07 - Common functions and indexing 1
452 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!