What does this mean?
4 views (last 30 days)
Show older comments
output(i,j)=mean(temp(:));
What does this code mean? I don't know 'temp(:)' mean.
0 Comments
Answers (1)
Stephen23
on 3 Mar 2020
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 Comments
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!