expected value of matrix
    조회 수: 21 (최근 30일)
  
       이전 댓글 표시
    
I have a random vector alpha with mean zero and standard deviation one, I want to find the expected value of alpha *alpha transpose 
E[alpha*alpha']
    0.0994
    0.3661
   -0.2125
    0.2839
댓글 수: 0
채택된 답변
  VBBV
      
      
 2022년 1월 30일
         alpha = [0.0994
    0.3661
   -0.2125
    0.2839]
 alpha.' 
 E = alpha.*alpha.'
 Exp = mean(E)  % expected value 
Use mean  function for your 4x4 matrix
추가 답변 (1개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!