如何将Armadillo vec / mat作为另一种方法的ref参数传递?

时间:2015-05-08 13:47:57

标签: c++ armadillo

我道歉,因为它可能是一个愚蠢的问题但是: 我想使用一个函数来填充我的矩阵,但我很难将它作为一个参数传递。 有人可以帮忙吗?

1 个答案:

答案 0 :(得分:1)

void FillMyMatrix(MyMatrixType& thisIsTheNameOfTheLocalVariableInTheFoo)
{
  // fill your matrix called thisIsTheNameOfTheLocalVariableInTheFoo
  // let's say the MyMatrixType has an Insert(int, int, int) method.
  thisIsTheNameOfTheLocalVariableInTheFoo.Insert(1, 2, 3);
}