行列乗算 C では、2 つの行列を加算、減算、乗算、除算できます。そのために、ユーザーから行番号、列番号、最初の行列要素、および 2 番目の行列要素の入力を受け取ります。次に、ユーザーが入力した行列に対して乗算を実行します。
一年を四半期に分けて
行列乗算では 最初の行列の 1 つの行要素に 2 番目の行列のすべての列要素を乗算します 。
行列の乗算を理解してみましょう 2*2 および 3*3 行列は以下の図で表されます。
雄牛vs雄牛
C での行列乗算のプログラムを見てみましょう。
#include #include int main(){ int a[10][10],b[10][10],mul[10][10],r,c,i,j,k; system('cls'); printf('enter the number of row='); scanf('%d',&r); printf('enter the number of column='); scanf('%d',&c); printf('enter the first matrix element= '); for(i=0;i<r;i++) { for(j="0;j<c;j++)" scanf('%d',&a[i][j]); } printf('enter the second matrix element=" ');" for(i="0;i<r;i++)" scanf('%d',&b[i][j]); printf('multiply of mul[i][j]="0;" for(k="0;k<c;k++)" mul[i][j]+="a[i][k]*b[k][j];" for printing result printf('%d ',mul[i][j]); printf(' '); return 0; < pre> <p> <strong>Output:</strong> </p> <pre> enter the number of row=3 enter the number of column=3 enter the first matrix element= 1 1 1 2 2 2 3 3 3 enter the second matrix element= 1 1 1 2 2 2 3 3 3 multiply of the matrix= 6 6 6 12 12 12 18 18 18 </pre> <p>Let's try to understand the matrix multiplication of <strong>3*3 and 3*3</strong> matrices by the figure given below:</p> <img src="//techcodeview.com/img/c-programs/01/matrix-multiplication-c-2.webp" alt="matrix multiplication in c"> <hr></r;i++)>
行列の乗算を理解してみましょう 3*3 と 3*3 行列は以下の図で表されます。