How do I do SEM Error Bars?
    조회 수: 66 (최근 30일)
  
       이전 댓글 표시
    
I know how to find the standard deviation with error bars but how do I find the standard error mean of variables?
댓글 수: 0
채택된 답변
  Star Strider
      
      
 2016년 4월 1일
        You have to know the number of observations that went into calculating each standard deviation.
Assuming ‘x’ is a vector:
SEM = std(x)/sqrt(length(x));
댓글 수: 4
  Vlatko Milic
 2019년 11월 7일
				Hi,
I get two outputs when calculating the standard error according to your example. What can the reason for this be?
Kind regards
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!