On Apr 18, 9:05 am, adonis <adonis...@gmai l.comwrote:
hi to everybody.
how can i draw a 2d diagram in vc++?
i don't know anything about thath.
please help me.
thanks.
This is not possible through standard C++, however it is possible by
using API functions in windows or equivalents in linux. The easiest
way would be to call an open source plotter, such as gnuplot. You can
call gnuplot from within C++ with "system" function however forming
the data file and making the plot outside the program seems better to
me.
On Apr 18, 3:52 pm, utab <umut.ta...@gma il.comwrote:
On Apr 18, 9:05 am, adonis <adonis...@gmai l.comwrote:
>
hi to everybody.
how can i draw a 2d diagram in vc++?
i don't know anything about thath.
please help me.
thanks.
>
This is not possible through standard C++, however it is possible by
using API functions in windows or equivalents in linux. The easiest
way would be to call an open source plotter, such as gnuplot. You can
call gnuplot from within C++ with "system" function however forming
the data file and making the plot outside the program seems better to
me.
can i do that in MATLAB?
is it possible to import data in MATLAB?
how can i do that?
>>hi to everybody.
>>how can i draw a 2d diagram in vc++?
>>i don't know anything about thath.
>>please help me.
>>thanks.
>This is not possible through standard C++, however it is possible by
>using API functions in windows or equivalents in linux. The easiest
>way would be to call an open source plotter, such as gnuplot. You can
>call gnuplot from within C++ with "system" function however forming
>the data file and making the plot outside the program seems better to
>me.
>
can i do that in MATLAB?
is it possible to import data in MATLAB?
how can i do that?
Yes, yes, and ask in a forum where MATLAB is topical (try
comp.soft-sys.matlab).
On Apr 18, 8:52 pm, adonis <adonis...@gmai l.comwrote:
On Apr 18, 3:52 pm, utab <umut.ta...@gma il.comwrote:
>
On Apr 18, 9:05 am, adonis <adonis...@gmai l.comwrote:
>
hi to everybody.
how can i draw a 2d diagram in vc++?
i don't know anything about thath.
please help me.
thanks.
>
This is not possible through standard C++, however it is possible by
using API functions in windows or equivalents in linux. The easiest
way would be to call an open source plotter, such as gnuplot. You can
call gnuplot from within C++ with "system" function however forming
the data file and making the plot outside the program seems better to
me.
>
can i do that in MATLAB?
is it possible to import data in MATLAB?
how can i do that?
MATLAB and C++ are two different environments/languages, MATLAB is an
interpretted language for fast manipulation of array computations and
to do first tries for a numerical work. What is your specific task?
MATLAB has many built-in functions which you may use for many of your
tasks including plotting graphs, but what is your aim? Still it is not
that clear to me.
Comment