tags:

views:

190

answers:

1

i need to present an array on agraph like function bar(array_name) in matlab how can i do that in microsoft visual c++ 2008

A: 

Unfortunately you can't do that with standard C++ alone. You'll have to use some library for graph plotting. You either use something general and low level like GDI or OpenGL, or you use a dedicated graph drawing library. Check this question for a list of such libraries: Graph Drawing C++ Library.

Firas Assaad