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