<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style id="owaParaStyle" type="text/css">P {margin-top:0;margin-bottom:0;}</style>
</head>
<body ocsi="0" fpstyle="1">
<div style="direction: ltr;font-family: Tahoma;color: #000000;font-size: 10pt;">Hello all,<br>
<br>
I am starting to use KST. <br>
<br>
My environment is the following:<br>
Linux 2.6.32.11, with RTAI patch<br>
Ubuntu 10.04<br>
KST 2.0.7<br>
getdata-0.8.5<br>
QT4<br>
<br>
Now, my problem. I installed KST 2 from source (since using ppa, it is installed only KST1.7 and then getdata is not recognized).<br>
<br>
Now, I create a very simple example with getdata:<br>
<br>
  DIRFILE *D = gd_open("/home/dfb/myProjects/dirfile-test", GD_RDWR |   GD_CREAT | GD_TRUNC | GD_UNENCODED);<br>
  gd_add_raw(D, "data1", GD_FLOAT64, 1, 0);<br>
<br>
  double data1[20];<br>
<br>
  for (int i = 0; i < 10; ++i) {<br>
      data1[i] = i;<br>
    }<br>
<br>
  gd_putdata(D, "data1", 0, 0, 10, 0, GD_FLOAT64, data1);<br>
<br>
  /* We can also read the derived channel: */<br>
  double datum;<br>
  for (int i = 0; i < 20; i++) {<br>
    gd_getdata(D, "data1", i, 0, 1, 0, GD_FLOAT64, &datum);<br>
    printf("sin 0.1 + log(100) = %g\n", datum);<br>
  }<br>
<br>
  gd_close(D);<br>
<br>
After running the C program above, I open KST and load the dirfile. KST gets extremelly slow after loading the dirfile above and gets slower with time.<br>
<br>
What am I doing wrong here?<br>
<br>
Thank you in advance,<br>
<br>
Diego<br>
</div>
</body>
</html>