矩阵数乘数学形式:
计算机中矩阵数乘的实现:
矩阵数乘
Matrix3X3 scalarMultiply(Matrix3X3 a, float scale)
{
Matrix3X3 temp;
for(int i = 0;i<3;i++)
{
for(int j=0;j<3;j++)
{
temp.index[i][j] = (a.index[i][j] * scale);
}
}
return temp;
}
矩阵的乘法:
计算机中矩阵乘法的实现:
矩阵乘法
Matrix3X1 multiplyMatrixNxM(Matrix3X3 a, Matrix3X1 b)
{
Matrix3X1 temp;
temp.index[0] = 0.0f;
temp.index[1] = 0.0f;
temp.index[2] = 0.0f;
for(int i=0;i<3;i++)
{
for(int j=0;j<3;j++)
{
temp.index[i] += (a.index[i][j] * b.index[j]);
}
}
return temp;
}
posted @
2009-01-19 22:16
HelloCG
阅读(
969)
评论()
编辑
收藏
举报