How to calculate Standard error of mean as shown in minitab website
447 次查看(过去 30 天)
显示 更早的评论
Hi, I trying to recreate the minitab formula(so that I can use it in Matlab) for calculating standard error of mean as shown in this link Step 2 ( http://support.minitab.com/en-us/minitab-express/1/help-and-how-to/modeling-statistics/anova/how-to/two-way-anova/interpret-the-results/key-results/ ). However, I am unable to get the answer as shown on the web ? is there anyone who knows how ?
0 个评论
回答(1 个)
Star Strider
2016-12-18
The Minitab site doesn’t show the calculation, so I assume it’s the usual definition:
data = rand(1, 10);
SEM = std(data)/sqrt(length(data)); % Standard Error Of The Mean
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Analysis of Variance and Covariance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!