<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'pascal developing' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'pascal developing' posted on the 'Pascal' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Sat, 18 May 2013 12:42:15 -0700</pubDate>
    <lastBuildDate>Sat, 18 May 2013 12:42:15 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>pascal developing</title>
      <link>http://www.programmersheaven.com/mb/pasprog/430805/430805/pascal-developing/</link>
      <description>I want to develop a program&lt;br /&gt;
which reads values and finds triplets in a signal is a triplet signal values ​​with following properties: (a) the two extreme values ​​are equidistant from the middle value, and (b) the two extreme values ​​are equal and less than half the median price. The median value of a triplet gives the characteristic frequency equal to the median position in the signal. &lt;br /&gt;
Thanks for you help.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pasprog/430805/430805/pascal-developing/</guid>
      <pubDate>Thu, 03 Jan 2013 16:17:24 -0700</pubDate>
      <category>Pascal</category>
    </item>
    <item>
      <title>Re: pascal developing</title>
      <link>http://www.programmersheaven.com/mb/pasprog/430805/430832/re-pascal-developing/#430832</link>
      <description>: I want to develop a program&lt;br /&gt;
: which reads values and finds triplets in a signal is a triplet &lt;br /&gt;
: signal values ​​with following properties: (a) the two extreme &lt;br /&gt;
: values ​​are equidistant from the middle value, and (b) the two &lt;br /&gt;
: extreme values ​​are equal and less than half the median price. The &lt;br /&gt;
: median value of a triplet gives the characteristic frequency equal &lt;br /&gt;
: to the median position in the signal. &lt;br /&gt;
: Thanks for you help.&lt;br /&gt;
: &lt;br /&gt;
It is not clear what the requirement is.  If the two extreme values are equal (specification b) then specification a is automatically satisfied.&lt;br /&gt;
&lt;br /&gt;
Is this an electrical signal?  If so then what do you mean by "price?"&lt;br /&gt;
&lt;br /&gt;
Are the values real, integer or char?&lt;br /&gt;
&lt;br /&gt;
Are the values sent three at a time?  Or does each new value cause the oldest value to be discarded?&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pasprog/430805/430832/re-pascal-developing/#430832</guid>
      <pubDate>Sat, 05 Jan 2013 23:43:41 -0700</pubDate>
      <category>Pascal</category>
    </item>
    <item>
      <title>Re: pascal developing</title>
      <link>http://www.programmersheaven.com/mb/pasprog/430805/430835/re-pascal-developing/#430835</link>
      <description>Problem:&lt;br /&gt;
Develop a program&lt;br /&gt;
which reads the values ​​corresponding to a signal and&lt;br /&gt;
recognizes the characteristic frequencies.&lt;br /&gt;
A triplet in a signal is a triplet signal values ​​with&lt;br /&gt;
following properties: (a) the two extreme values ​​are equidistant from the middle&lt;br /&gt;
value, and (b) the two extreme values ​​are equal and&lt;br /&gt;
less than half the median value.For example, the triplet&lt;br /&gt;
values ​​are shown in bold below, are triplet:&lt;br /&gt;
&lt;img src="http://www.programmersheaven.com/images/broken.gif" /&gt;&lt;br /&gt;
&lt;br /&gt;
The median value of a triplet gives the characteristic frequency&lt;br /&gt;
equal to the median position in the signal.At&lt;br /&gt;
example above, the frequency characteristic is 6 (because the&lt;br /&gt;
5 median price is the sixth number displayed in the signal).Input files:&lt;br /&gt;
The input files named seti.in are text files with&lt;br /&gt;
structure: They have exactly two lines. The first is an integer&lt;br /&gt;
number N (10 ≤ N ≤ 10.000), corresponding to the number of values&lt;br /&gt;
the signal we entered. The second line has N&lt;br /&gt;
integers separated by two to one space.&lt;br /&gt;
Output files:&lt;br /&gt;
The output files named seti.out are  text files with&lt;br /&gt;
following structure: The first line has an integer number K&lt;br /&gt;
(0 ≤ K ≤ N). This number represents the number of charac-&lt;br /&gt;
teristics frequencies identified. Follow K lines&lt;br /&gt;
each of which has an integer M, (2 ≤ M ≤ N-1).&lt;br /&gt;
The number M is a characteristic frequency, namely&lt;br /&gt;
position of the middle value of the corresponding triplet in the signal (the&lt;br /&gt;
numbering begins with 1). The characteristic frequencies should&lt;br /&gt;
be given in ascending order. If a frequency characteristic&lt;br /&gt;
match more triplets, the frequency should be&lt;br /&gt;
appears only once.&lt;br /&gt;
I think I help you to help me if you have any question reply&lt;br /&gt;
or if you can help me reply&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pasprog/430805/430835/re-pascal-developing/#430835</guid>
      <pubDate>Sun, 06 Jan 2013 14:49:36 -0700</pubDate>
      <category>Pascal</category>
    </item>
    <item>
      <title>Re: pascal developing</title>
      <link>http://www.programmersheaven.com/mb/pasprog/430805/430855/re-pascal-developing/#430855</link>
      <description>Your example is not showing up.&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pasprog/430805/430855/re-pascal-developing/#430855</guid>
      <pubDate>Thu, 10 Jan 2013 15:54:07 -0700</pubDate>
      <category>Pascal</category>
    </item>
    <item>
      <title>Re: pascal developing</title>
      <link>http://www.programmersheaven.com/mb/pasprog/430805/430864/re-pascal-developing/#430864</link>
      <description>https://mail.google.com/mail/?ui=2&amp;amp;ik=67df716543&amp;amp;v
iew=att&amp;amp;th=13c12009dbed7447&amp;amp;attid=0.1&amp;amp;disp=thd&amp;amp;rea
lattid=f_hbmreqzn0&amp;amp;zw</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pasprog/430805/430864/re-pascal-developing/#430864</guid>
      <pubDate>Fri, 11 Jan 2013 15:05:27 -0700</pubDate>
      <category>Pascal</category>
    </item>
    <item>
      <title>Re: pascal developing</title>
      <link>http://www.programmersheaven.com/mb/pasprog/430805/430929/re-pascal-developing/#430929</link>
      <description>: https://mail.google.com/mail/?ui=2&amp;amp;ik=67df716543&amp;amp;v
iew=att&amp;amp;th=13c12009&lt;br /&gt;
: dbed7447&amp;amp;attid=0.1&amp;amp;disp=thd&amp;amp;realattid=f_hbmreqzn0&amp;amp;
zw&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This site asks me to log in.  I don't care to become a member.  Can you post your code here?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/pasprog/430805/430929/re-pascal-developing/#430929</guid>
      <pubDate>Tue, 15 Jan 2013 21:37:57 -0700</pubDate>
      <category>Pascal</category>
    </item>
  </channel>
</rss>