从python访问矩阵的运算符功能

时间:2019-03-16 11:58:29

标签: python c++ python-2.7 boost

我正在尝试访问G4RotationMatrix的矩阵元素。

G4RotationMatrix的类型定义为HepRotation,如下所示 typedef CLHEP::HepRotation G4RotationMatrix

HepRotation的功能之一定义为

double HepRotation::operator() (int i, int j) const {
  if (i == 0) {
    if (j == 0) { return xx(); }
    if (j == 1) { return xy(); }  
    if (j == 2) { return xz(); }
  } else if (i == 1) {
    if (j == 0) { return yx(); }
    if (j == 1) { return yy(); }
    if (j == 2) { return yz(); }
  } else if (i == 2) {
    if (j == 0) { return zx(); }
    if (j == 1) { return zy(); }
    if (j == 2) { return zz(); }
  }
  std::cerr << "HepRotation     subscripting: bad indices "
       << "(" << i << "," << j << ")" << std::endl;
  return 0.0;

假设已正确定义它,以增强我在Python中编码的方式和方式,以访问矩阵的元素(在我的情况下称为rot)?

0 个答案:

没有答案