필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

A matlab code for multiplication of matrices....URGENT

조회 수: 1 (최근 30일)
sneha
sneha 2012년 12월 27일
Can anyone give me a code for writing two N x N matrix A and B and multiplying them to be stored as C.the value of every element in A is given by a function a(i,j,N) and B is the transpose of A.

답변 (1개)

Lalit Patil
Lalit Patil 2012년 12월 27일
N = 3
A = rand(N,N)
B = transpose(A)
C = A*B

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by