Matrix Multiply Problem and how to write at Matlab

조회 수: 3 (최근 30일)
Andy Rahmawan
Andy Rahmawan 2013년 1월 9일
Hi guys, i'm noob about matrix.
% code
given data that matrix A = [1 2; 3 4]
and matrix B = [4 5;6 7]
that [A]*[C]=[B]
How to find matrix C?
thanks

채택된 답변

Thorsten
Thorsten 2013년 1월 9일
C = inv(A)*B
or
C = A\B
  댓글 수: 1
Jan
Jan 2013년 1월 9일
The 2nd method is more efficient and more stable, such that it should be preferred in every case.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Elementary Math에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by