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 Solvers64
Suggested Problems
-
Set some matrix elements to zero
634 Solvers
-
Basics: Divide integers to get integer outputs in all cases
137 Solvers
-
Calculate distance travelled when given radius and rotations
242 Solvers
-
Find Out sum of principal diagonal element of given matrix
258 Solvers
-
Create an anti-identity matrix
202 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!