📄 matrixexpression.h
字号:
#ifndef MEMS_MATRIX_EXPRESSION_H
#define MEMS_MATRIX_EXPRESSION_H
#include "Matrix.h"
#include "Vector.h"
namespace mems
{
namespace MatrixExpression
{
Matrix prod(const Matrix & e1, const Matrix & e2);
Matrix prec_prod(const Matrix & e1, const Matrix & e2);
Vector prod(const Matrix & e1, const Vector & e2);
Vector prec_prod(const Matrix & e1, const Vector & e2);
Vector prod(const Vector & e1, const Matrix & e2);
Vector prec_prod(const Vector & e1, const Matrix & e2);
Matrix div(const Matrix & e1, const Real & e2);
Matrix prod(const Real & e1, const Matrix & e2);
Matrix prod(const Matrix & e1, const Real & e2);
Matrix trans(const Matrix & e1);
void zero(Matrix & e1);
void identity(Matrix & e1);
} // MatrixExpression
} // mems
mems::Matrix operator/(const mems::Matrix & e1, const mems::Real & e2);
mems::Matrix operator*(const mems::Real & e1, const mems::Matrix & e2);
mems::Matrix operator*(const mems::Matrix & e1, const mems::Real & e2);
mems::Matrix operator+(const mems::Matrix & e1, const mems::Matrix & e2);
mems::Matrix operator-(const mems::Matrix & e1, const mems::Matrix & e2);
#endif // MEMS_MATRIX_EXPRESSION_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -