Hello:

First post here. Using C in Visual Studio 2008. Can work with VS 2005 if necessary.

1. How do I display numerical data in arrays as in a spreadsheet?
2. How do I plot numerical data in arrays?

These seem to be simple questions. But I cannot find solutions. So far, I would print the data to a file, import into Excel and view/plot. However, with this code there are too many arrays--so the print/import/plot is tiring.
Some constraints.
1. I do not want to write 20+ lines of code to do the above. MATFOR or Array Visualizer let you do the plotting with a one line function call.
2. They cannot display the data in a convenient format. I would like to display the data and the plot in one or two windows so that they are visible simultaneously.
3. This is a win32 console application---all the code is portable.
4. Will be using these during debugging.
5. Free or paid.

I am also open to a solution that outputs the array data to an Excel sheet (can keep Excel open) and if it can also plot that can be great but I can live without plotting.

Best