- read the documentation (e.g. min explains exactly how to do this).
- experiment, try out different ways of doing things, experiment, play with your data, and experiment. Your computer will not explode if you make a mistake.
Find mininmum value across the column
1 回表示 (過去 30 日間)
古いコメントを表示
How I can find the minimum value across the column for each row. if I have a matrix of [51x4] and i have to compute minimum of the column value in each row.
2 件のコメント
Stephen23
2016 年 2 月 4 日
編集済み: Stephen23
2016 年 2 月 4 日
Some tips that will help you write code and solve tasks like this all by yourself:
採用された回答
Torsten
2016 年 2 月 4 日
From the documentation:
M = min(A,[],dim) returns the smallest elements along dimension dim. For example, if A is a matrix, then min(A,[],2) is a column vector containing the minimum value of each row.
Best wishes
Torsten.
2 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!