I am working with numerical data and I want to plot and analyze arrays and vectors in debug mode. I can plot data using intermediate window by using a third party's library and I am suppose to initialize object responsible of plotting and also I need to call few methods to visualize the data. I want to avoid it because when I have to plot several time then it is not effective. I would like to know that is there any extension or tool available to visualize the numerical data in debug mode.
In a similar vein to the answer from Sergey Vlasov, there is another plugin for Visual Studio called ArrayPlotter that can plot arrays of type byte/short/int/float/double including interleaved and complex arrays.
It doesn't require you to modify the code to call the plotting routine. Any (practically) accessible memory can be treated as an array of the specified type and plotted whilst in a breakpoint in the debugger.
Disclaimer: I wrote the plugin