Problem with the mean function

2 views (last 30 days)
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.

Accepted Answer

Walter Roberson
Walter Roberson on 9 Mar 2016
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.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!