Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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.

In reply to Re^5: Node Tension by Roy Johnson
in thread Node Tension by mojotoad

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2024-04-25 13:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found