What does this mean?

4 visualizaciones (últimos 30 días)
JUN LIM
JUN LIM el 3 de Mzo. de 2020
Respondida: Stephen23 el 3 de Mzo. de 2020
output(i,j)=mean(temp(:));
What does this code mean? I don't know 'temp(:)' mean.

Respuestas (1)

Stephen23
Stephen23 el 3 de Mzo. de 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.

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by