How to find out the minimum value in a matrix between two columns in a row

5 次查看(过去 30 天)
suppose i have matrix a=[1 2 3 4 5 10;2 3 5 6 1 12;2 6 4 5 7 16;10 2 1 4 5 20;2 3 1 4 9 12]
now i want to find out the miimum value between column 3 and 4 of row 1, what will be mind command for that?

采纳的回答

Adam Danz
Adam Danz 2022-1-13
Learn indexing. 10 minutes reading that page will save you hours in the future.
min(a(1,[3,4]))

更多回答(0 个)

类别

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

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by