Multiplication between 2 matrix
이전 댓글 표시
Hi, I need to multiply one matrix, which only number has A = [1 0; 2 3] with a matrix(array) with variables, which are not define yet, but they are numbers, which are not yet defined B = [a b; c d]
I need to get one general solution in order to change a,b,c,d values
Thanks in advance
채택된 답변
추가 답변 (1개)
Jan
2017년 11월 6일
Or perhaps:
C = [a, b; ...
2*a + 3*c, 2*b + 3*d];
카테고리
도움말 센터 및 File Exchange에서 Code Performance에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!