I get an error like CXX0059: Error: left operand is class not a function name in VS2010, when i try to watch the values in columns and rows of my Jacobian Matrix.
For example; i have a matrix like
MatrixXf j = MatrixXf::Zero(2,mList.size());
...
...
for(...)
{
j(0, col) += (-mList[i]->mLength*sin(angle));
j(1, col) += ( mList[i]->mLength*cos(angle));
}
and when i debugging this part, it fails to watch the variable j(0,col). I know, maybe it's not a function name, but it has some value in it. I mean, the matrix consists of 10 cells, but what i get from visual studio is only one float value.
Here is the sc of debug:
Appreciate any help on watching the value of each cell.