Matrices multiplication (a*b)

조회 수: 9 (최근 30일)
N/A
N/A 2023년 2월 2일
편집: N/A 2023년 2월 2일
How can I create a code that can multiply matrices multiplication for vertices (a*b) please help.

채택된 답변

Dr. JANAK TRIVEDI
Dr. JANAK TRIVEDI 2023년 2월 2일
이동: Image Analyst 2023년 2월 2일
you can multiply matrices using a for-loop instead of using the built-in matrix multiplication operator (*). The code would look like this:
function C = matrix_multiplication(A,B) % This function multiplies two matrices A and B without using the * operator
[m,n] = size(A); [p,q] = size(B);
if n ~= p error('Inner dimensions of matrices do not match'); end
C = zeros(m,q);
for i = 1:m for j = 1:q for k = 1:n C(i,j) = C(i,j) + A(i,k) * B(k,j); end end end
end
Here, A and B are the input matrices and C is the output matrix. The function first checks if the inner dimensions of the matrices match. If they do not match, it returns an error. The for-loop then performs the matrix multiplication by iterating over each element of the output matrix and updating it with the dot product of the corresponding row in A and column in B.
  댓글 수: 1
N/A
N/A 2023년 2월 2일
This worked, thank you.

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

추가 답변 (1개)

Matt J
Matt J 2023년 2월 2일
편집: Matt J 2023년 2월 2일
By using a loop, and the definition,

카테고리

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

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by