You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Eigen is based on expression decomposition.
When using auto A = B*C, A will be an "intermediate" expression syntax tree.
It would be great if the visualizer could call A.eval() to get the actual matrix to display.
Is this possible?
The text was updated successfully, but these errors were encountered:
It is possible to call eval() in the debug and Immediate windows, so I was hoping it is possible to do it on the natvis level.
TBH, the docs are a bit too dense for me to figure out if you can run arbitrary debug scriptable code from it.
Eigen is based on expression decomposition.
When using
auto A = B*C
,A
will be an "intermediate" expression syntax tree.It would be great if the visualizer could call
A.eval()
to get the actual matrix to display.Is this possible?
The text was updated successfully, but these errors were encountered: