Problem with the mean function

조회 수: 1 (최근 30일)
shalat sunny n
shalat sunny n 2016년 3월 9일
댓글: shalat sunny n 2016년 3월 9일
hiiii, I want to calculate the mean value for the frames which are extracted from a video .I use mean=mean(X) but there is some error has been occured.so can you please suggest me the answer for calculating the mean value of extracted frames.

채택된 답변

Walter Roberson
Walter Roberson 2016년 3월 9일
When you did
mean = mean(X)
that will work the first time, calculating the mean and storing the result in the variable named "mean".
But the second time you ask to execute it, mean(X) does not refer to the function mean, it refers to the variable "mean" that you assigned the calculation to.
Solution: never use a variable name which is the same as the name of a function you might want to call, because as soon as you do the assignment, the name stops referring to the function and starts referring to the variable.
  댓글 수: 1
shalat sunny n
shalat sunny n 2016년 3월 9일
thank you so much for answering my question.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by