How can I calculate the sample mean and sample variance
37 views (last 30 days)
Show older comments
Ihor
on 4 Dec 2022
Answered: RAGHUNATHRAJU DASHARATHA
on 4 Dec 2022
I have a pseudo-random matrics M, sizes K-by-N. How can I calculate the sample mean and sample variance:
1) for each column,
2) for the whole matrix?
0 Comments
Accepted Answer
RAGHUNATHRAJU DASHARATHA
on 4 Dec 2022
A per my understanding you want to calculate mean and variance for each column and whole matrix.
I'll demonstrate it using below example
a=randi(10,3) % generates pseudo random matrix
%Mean and Variance for each column
[V,M]=var(a)
%Mean and Variance for whole matrix
[b,c]=var(a,0,"all")
for further more go through this link
0 Comments
More Answers (0)
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!