output(i,j)=mean(temp(:));
What does this code mean? I don't know 'temp(:)' mean.

Antworten (1)

Stephen23
Stephen23 am 3 Mär. 2020

0 Stimmen

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.

Produkte

Version

R2019a

Gefragt:

am 3 Mär. 2020

Beantwortet:

am 3 Mär. 2020

Community Treasure Hunt

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

Start Hunting!

Translated by