how to know the column numbers of a matrix which contains values less than 50.

1 次查看(过去 30 天)
I want to know the column numbers of a matrix which contains values less than 50.
how to do this???

采纳的回答

KSSV
KSSV 2019-4-16
编辑:KSSV 2019-4-16
Let A be your row matrix.
idx = A<50 ;
idx = find(idx)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 NaNs 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by