A matlab code for multiplication of matrices....URGENT
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
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.
Réponses (1)
Lalit Patil
le 27 Déc 2012
N = 3
A = rand(N,N)
B = transpose(A)
C = A*B
Cette question est clôturée.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!