Problem with the mean function

2 次查看(过去 30 天)
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.

更多回答(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