Does anyone know how to determine how an observed variable changes over time in Visual Studio 2010? That is, if you have the following code
double someVariable; for ( int i = 0; i < 20; i++) { someVariable = Math.Pi() * i; }
and you looked at "someVariable" in the idea, you could go through the code and see how it grows with each step. I would like to be able to run the loop and draw what this variable did, because of the need to manually go through it. I do a lot of math and sometimes watch how change is changing, really useful and insightful.
Additional Information: I have several slightly different solvers, and depending on the problem I was looking for, I would like to look at different variables to see where the problems arise. I am currently placing these variables in a log file, but this slows down the solution significantly, and I have to spend a decent amount of time changing the debugging code to identify problems. I am looking for a way to use slicker which is IDE oriented. Type of visualizer on steroids.
Pltaylor
source share