What does this mean?
4 ビュー (過去 30 日間)
古いコメントを表示
output(i,j)=mean(temp(:));
What does this code mean? I don't know 'temp(:)' mean.
0 件のコメント
回答 (1 件)
Stephen23
2020 年 3 月 3 日
The (:) syntax converts an array of any size and number of dimensions into a column vector.
So that code calculates the mean of all elements of temp (regardless of the size/dimensions of temp) and so will return exactly one value.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!