User Profile

Collapse

Profile Sidebar

Collapse
STAGED
STAGED
Last Activity: Aug 11 '07, 05:09 PM
Joined: Apr 28 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • STAGED
    started a topic Fortran 77 download link

    Fortran 77 download link

    Hi I searched "f77" and "g77" and came up empty.

    I need a direct download link for a Linux (using Ubuntu) compliant
    1.) Fortran 77
    2.) Useful and common libraries

    If possible an IDE f77 would be nice.

    Thanks,
    Eric
    See more | Go to post

  • Never mind. Found the problem in show_new_widget
    See more | Go to post

    Leave a comment:


  • STAGED
    started a topic TCL/TK. Error: Expected boolean value but got ""

    TCL/TK. Error: Expected boolean value but got ""

    The script:
    proc bugsy { } {
    global helmet

    pack forget .widget1

    if { $helmet(key1) } {
    pack .widget2 -anchor nw -side top -expand 0
    } else { show_new_widget }

    return
    }
    ------------
    .widget1, .widget2 and proc show_new_widget are predefined higher in the program listing
    $helmet(key1) is predefined and I test outputted...
    See more | Go to post

  • STAGED
    replied to Perl, irrelevant error messages?
    in Perl
    OK, I found the mistake on my own. By virtue of the loop increment variable, the condition to stop the loop should be "<" instead of "<=", otherwise the loop tries to excute one too many times.
    See more | Go to post

    Leave a comment:


  • STAGED
    replied to Perl, irrelevant error messages?
    in Perl
    O.K., here's a snipet:
    -----------------------
    $cfac = 1;
    for ($i=0;$i<=$coun tnpf;$i++) {
    $cfac = $A1[2][$i] / $maxfac;
    $A1[3][$i] = $A1[1][$i] * $cfac;
    } # end for loop
    ------------------------
    Facts:
    1.) @A1 and $maxfac are definied with values BEFORE going into this loop as outputted those values just before the loop as verification.
    2.) I get complaints: "Use...
    See more | Go to post
    Last edited by STAGED; Apr 30 '06, 04:57 AM.

    Leave a comment:


  • STAGED
    started a topic Perl, irrelevant error messages?
    in Perl

    Perl, irrelevant error messages?

    NEWBIE ALERT...

    I have a script that renames filenames. It has some basic math operations associated with it too.

    The script ***runs perfectly*** in its intended task and all variables have values before operations occur on those variables. However I still get error messages (see below) complaining about uninitialized value which is untrue. Any idea why?
    ---------------
    Use of uninitialized value in...
    See more | Go to post
    Last edited by STAGED; Apr 30 '06, 04:44 AM.
No activity results to display
Show More
Working...