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

답변 (1개)

Stephen23
Stephen23 2020년 3월 3일

0 개 추천

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.

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

제품

릴리스

R2019a

질문:

2020년 3월 3일

답변:

2020년 3월 3일

Community Treasure Hunt

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

Start Hunting!

Translated by