Search:

Type: Posts; User: tzeronone; Keyword(s):

Search: Search took 0.03 seconds.

  1. Re: Perl to count current value based on next value

    Correct
  2. Re: Perl to count current value based on next value

    It is linear which based on two points.
  3. Re: Perl to count current value based on next value

    They are not the same...
  4. Re: Perl to count current value based on next value

    How about the interpolation part? Any idea?
  5. Re: Perl to count current value based on next value

    Any idea to solve it?
  6. Re: Perl to count current value based on next value

    This is what I have for current
    #! /usr/bin/perl -w
    use strict;

    my $prev_id = 0;
    my $prev_val = 0;
    my $next_id;
    my $next_val;

    while (<>)
  7. Re: Perl to count current value based on next value

    I'm wondering how to get the next ID
  8. Perl to count current value based on next value

    Currently I'm learning Perl and gnuplot. I would like to know how to count certain value based on the next value. For example:


    #ID(X) Y
    1 1
    3 9
    5 11


    The output should show the value of...
Results 1 to 8 of 8