Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Bugfixing Old Code

by hippo (Bishop)
on Jul 22, 2021 at 15:46 UTC ( [id://11135307]=note: print w/replies, xml ) Need Help??


in reply to Bugfixing Old Code

Welcome to the Monastery, cluelessPerlMan.

Are you sure this code is the one you are attempting to run?

push /@TTTPLOT, /@header;

That does not look like valid perl. I suspect that the actual code has backslashes where you have slashes. In which case you should not be attempting to dereference @TTTPLOT. Use something like this instead:

push @TTTPLOT, \@header;

If that makes the first error vanish, then you can also try changing line 69 to

push @{$TTTPLOT[$index]}, \@twenty_SFs;

🦛

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11135307]
help
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found