How to compute Expectation in MatLab?

47 次查看(过去 30 天)
Hello Guys,
I need to compute E{x^4} in MatLab (x is vector). Can it be done by taking the mean value of x^4 (each element of x exponent 4).
Thanks for the help. Regards

采纳的回答

Stephen23
Stephen23 2014-9-25
编辑:Stephen23 2014-9-25
Many basic operators in MATLAB are treated as matrix operations, including multiplication , division ,and power operators.
When you wish to perform the same operation element-wise, then you can use the element-wise syntax. For example matrix multiplication is A*B, whereas multiplication of corresponding array elements is A.*B .
In your example, this means you can simply use the element-wise power function:
x.^4
which operates on the whole vector at once. Handy! You might like to read this too:

更多回答(1 个)

Star Strider
Star Strider 2014-9-25
That is how I would do it, using element-wise exponentiation:
Ex4 = mean(x.^4);

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by