• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

how to generate the graph by taking a sample data plspost the code for it

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Write a program that reads a file with 2 columns:
- time in minutes for the x axis
- value (e.g. temperature, heart freq.) for the y axis

Plot the last m minutes, the y axis shall have a range from min...max.
Start with parameter values m=5, speed s=1, min=20, max=120.
After m=5 minutes, the graphical display shall plot the curve of the
last 5 minutes. In other words, you have to implement a sliding window
with a 5 minute history. This way of displaying measurements is common
for many medical instruments.
The speed s is useful for testing, 1=real time, 10=10 times faster.
To implement the real time behaviour, you have to let the program wait the
time interval between two values. The time interval is not constant.

Any OO programming languages and any graphical libraries are fine,
as long as they are available for Windows and Linux. Examples are
Java, C++, QT, SDL, TCL/TK, Flash, .NET/mono.


A sample file looks like this (lines 1..3 are always comments):
-------8<-------cut-here-------8<-------
Logfile of program temperature_monitor.cpp
Temp sensor #42, range 30..60 degrees Celsius
2007-06-21 20:30
0.017737 45.2
0.045122 42.7
0.073591 43.1
[...]
-------8<-------cut-here-------8<-------

You can download the test data file here:
http://alf42.dyndns.org/oost/temp_testdata_2007-06-21


An axample how the output can look like is here:
http://alf42.dyndns.org/oost/temperature_diagram_example.gif

Thanks & Regards
srinu
 
Ranch Hand
Posts: 171
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sounds great! And exactly where are you stuck?
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you asking us to do your homework for you? Have you expended any effort on this yourself?
 
srinu malgireddy
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i have tried i am basically ABAP developer but this cant be done in ABAP .so i shld use java but i am not so good at java so i am asking for the experts to help
 
Bartender
Posts: 10336
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you tried posting this in the Jobs Offered forum you might be able to find a contractor willing to quote for this work.

If you are not asking for code to be written for you, then to get help here you really need to explain what you have done so far and where you are stuck.

(See here if you are not sure how to use these forums)
[ July 24, 2007: Message edited by: Paul Sturrock ]
 
Manuel Leiria
Ranch Hand
Posts: 171
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is it for a web application?
 
srinu malgireddy
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
no its not a webapplication . i am an student doing my masters this was one of the assignment given by my one of the professor i am not having good knowledge in java so i could not made it in that.i tried it in dotnet but there i could not change the values on the xaxis and yaxis in the graph
 
reply
    Bookmark Topic Watch Topic
  • New Topic