積の計算に用いる1つ目の行列。
The first matrix
used in the calculation of the product.
B
積の計算に用いる2つ目の行列。
行数はの列数と等しくなければならない。
The second matrix
used in the calculation of the product.
The number of rows of must be equal to
the number of columns of .
◆戻り値(Return value)
行列を表す構造体。
戻り値のメンバの値は以下のようになる。
A structure which represents a matrix .
The values of members of the return value are as follows.
行列の積の計算は時間がかかるのでデフォルトで進行状況を表示する仕様にしている。
進行状況を表示したくない場合はプログラムの冒頭に
「#define MULTIPLY_MATRIX_VERBOSE 0」と書く。
Since it takes time to compute the product of matrices,
its progress is displayed by default.
To suppress displaying the progress,
write “#define MULTIPLY_MATRIX_VERBOSE 0”
at the top of the program.