Click here to Skip to main content
15,886,075 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
There are various platform available for designing real time plotting application. I design this type in C# using visual studio 2005 but the problem lies in memory usage and plotting very very slow. Which language should i choose (which provide less memory usage and fast plotting) and platform(independent on OS).

Any Suggestion should be helpful to me.

Thanxs
Posted

1 solution

If you want to be platform independant then you are probably going to use Java. C# is windows only, and C and C++, though 'compiler independent', do get tied down to OS once you hit thje UI.

The next part is performance and memory. To be frank, good java will provide you with pretty impresive performance. But that is the crux, good java.
Seperate your data from your display, a classic problem is recalculating everything everytime the display redraws.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900