Matrix Multiplication in Simulink
    조회 수: 94 (최근 30일)
  
       이전 댓글 표시
    
I want to multiply a simple 3x3 matrix and 1x3 matrix using simulink model, how do i do that ?

댓글 수: 0
답변 (3개)
  Eric L
      
 2020년 2월 13일
        In case anyone else has the same problem, make sure "Interpret vector parameters as 1-D" is unchecked in the constant block if you want to do matrix multiplication.
In pravin's model, Simulink is probably reading Constant2 as size [3] instead of [1x3]. 
댓글 수: 3
  Shritesh Jibhkate
 2018년 4월 25일
        Interchange those two constant blocks. The error is occurring due to mismatch in dimension. Here you are trying to multiply matrix of size 3*3 by 1*3. But, correct multiplication will be 1*3 by 3*3.
댓글 수: 0
참고 항목
카테고리
				Help Center 및 File Exchange에서 Simulink Functions에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!







