You're right. My notion was only to distinguish interesting from non-interesting. You regain the magnitude if you drop a log:
sub tension {
my ($hi, $lo) = @_;
$lo or return 0;
$lo/log($hi + 1);
}
my @samples = (1, 3, 8, 20, 50, 90);
for (map {my $x=$_; map [$x, $_], grep $_ <= $x, @samples} @samples) {
printf "%2d-%2d: %3.4f\n", @$_, tension(@$_);
}
__END__
1- 1: 1.4427
3- 1: 0.7213
3- 3: 2.1640
8- 1: 0.4551
8- 3: 1.3654
8- 8: 3.6410
20- 1: 0.3285
20- 3: 0.9854
20- 8: 2.6277
20-20: 6.5692
50- 1: 0.2543
50- 3: 0.7630
50- 8: 2.0347
50-20: 5.0867
50-50: 12.7167
90- 1: 0.2217
90- 3: 0.6651
90- 8: 1.7735
90-20: 4.4337
90-50: 11.0844
90-90: 19.9519
I'd call < 1.3 low tension, 1.3-2 moderate, >2 strong.
Caution: Contents may have been coded under pressure.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|