Perl Array help


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Perl Array help
# 8  
Old 05-25-2012
perl code:
  1. #! /usr/bin/perl
  2. use warnings;
  3. use strict;
  4.  
  5. (@ARGV != 3) && die "Enter co-ordinates. Exiting ";
  6.  
  7. my ($x, $y, $z) = @ARGV;
  8. my (@nos, @near_node);
  9. my ($dist, $near_dist);
  10.  
  11. open (COORD, "input");
  12. while (<COORD>) {
  13.     chomp;
  14.     if (/^\*NODE/ .. /^\*\*/) {
  15.         if (/^\*NODE/) { next }
  16.         if (/^\*\*/)   { last }
  17.  
  18.         @nos = split /\s+/;
  19.         @nos = map { s/[.,]+$//; $_ } @nos;
  20.         $dist = sqrt ((($x - $nos&#91;2]) ** 2) + (($y - $nos[3]) ** 2) + (($z - $nos[4]) ** 2));
  21.  
  22.         #print "$dist .. @nos\n"; # Uncomment this line if you want to see dist of each node from input and the node itself.
  23.         if (!defined($near_dist)) {
  24.             $near_dist = $dist;
  25.             @near_node = @nos;
  26.         }
  27.         elsif ($dist <= $near_dist) {
  28.             $near_dist = $dist;
  29.             @near_node = @nos;
  30.         }
  31.     }
  32. }
  33. close (COORD);
  34. print "Nearest node: @near_node\nDistance: $near_dist\n";
Provide input co-ordinates (x,y,z) as command line arguments.
Few runs:
Code:
[user@host ~]# ./test.pl 76 86 0
Nearest node:  29456 75.95656 86.5 0
Distance: 0.501883486080186
[user@host ~]#
[user@host ~]# ./test.pl 50 60 0
Nearest node:  29376 57.499958 77.81881 0
Distance: 19.3328570009159
[user@host ~]# ./test.pl 78 88 10
Nearest node:  29466 77.82405 87.50001 0
Distance: 10.014037567465
[user@host ~]#


Last edited by balajesuri; 05-29-2012 at 09:52 AM.. Reason: Added "@near_node = @nos;" as line #25
This User Gave Thanks to balajesuri For This Post:
# 9  
Old 05-25-2012
wow! okay first question.
Code:
(@ARGV != 3) && die "Enter co-ordinates. Exiting ";

im not to sure what this line is doing.
# 10  
Old 05-25-2012
If the command line arguments are not equal to 3, the program will exit. Try giving just ./test.pl and see what happens.
# 11  
Old 05-25-2012
when you say giving
Code:
./test.pl

what do you mean exactly. I have only been using Perl for about two days now so I am VERY to this.
# 12  
Old 05-25-2012
1. Which OS are you working on?
2. How did you run sample practice perl programs in your 2 days of learning?
# 13  
Old 05-25-2012
1. I'm running vista (figure a company like BASF could afford something better, huh?)
2. We have a program call PuTTy.
# 14  
Old 05-25-2012
OK... Please post the output of the following two commands:
1. uname -a
2. echo $SHELL

My guess is you're connecting to a server with some enterprise version of Linux and you do that using PuTTY. Try the following steps in your home directory.
1. Paste the program in a file "test.pl"
2. Paste the sample input in a file "input"
3. Run it at command line using this command perl test.pl 76 86 0
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Perl array

Hi. I have 2 arrays, @result and @comment. Result contains 1 2 3 and comment contains a b c my code is below my @multi = (@result, @comment); foreach (@multi) { print array; } For this I am getting result 1 2 (2 Replies)
Discussion started by: sauravrout
2 Replies

2. Shell Programming and Scripting

HELP on Perl array / sorting - trying to convert Korn Shell Script to Perl

Hi all, Not sure if this should be in the programming forum, but I believe it will get more response under the Shell Programming and Scripting FORUM. Am trying to write a customized df script in Perl and need some help with regards to using arrays and file handlers. At the moment am... (3 Replies)
Discussion started by: newbie_01
3 Replies

3. Shell Programming and Scripting

PERL : Read an array and write to another array with intial string pattern checks

I have an array and two variables as below, I need to check if $datevar is present in $filename. If so, i need to replace $filename with the values in the array. I need the output inside an ARRAY How can this be done. Any help will be appreciated. Thanks in advance. (2 Replies)
Discussion started by: irudayaraj
2 Replies

4. Shell Programming and Scripting

Array in Perl - Detect several file to be in one array

Hi everyone I have one question about using array in perl. let say I have several log file in one folder.. example test1.log test2.log test3.log and the list goes on.. how to make an array for this file? It suppose to detect log file in the current directory and all the log file will... (3 Replies)
Discussion started by: sayachop
3 Replies

5. Shell Programming and Scripting

perl array help !

I have a list of items in array say @array1=(apple=2,orange=3,peas=15,spinach=50); Another array has values say @array2=(apple,orange,plums,pineapple); I need to display a list if @array2 values is present in @array1 .else I need to print of the form(The final o/p may look like this.) OUTPUT... (5 Replies)
Discussion started by: gameboy87
5 Replies

6. Shell Programming and Scripting

perl, put one array into many array when field is equal to sth

Hi Everyone, #!/usr/bin/perl use strict; use warnings; my @test=("a;b;qqq;c;d","a;b;ggg;c;d","a;b;qqq;c;d"); would like to split the @test array into two array: @test1=(("a;b;qqq;c;d","a;b;qqq;c;d"); and @test2=("a;b;ggg;c;d"); means search for 3rd filed. Thanks find the... (0 Replies)
Discussion started by: jimmy_y
0 Replies

7. Shell Programming and Scripting

Perl grep array against array

Hi, Is there any way I can grep an array against another array? Basically here's what I need to do. There will be an array containing some fixed texts and I have to check whether some files contain these lines. Reading the same files over and over again for each different pattern doesnt seem... (1 Reply)
Discussion started by: King Nothing
1 Replies

8. Shell Programming and Scripting

perl -write values in a file to @array in perl

Hi can anyone suggest me how to write a file containing values,... say 19 20 21 22 .. 40 to an array @array = (19, 20, ... 40) -- Thanks (27 Replies)
Discussion started by: meghana
27 Replies

9. Shell Programming and Scripting

[Perl] Accessing array elements within a sed command in Perl script

I am trying to use a script to replace the header of each file, whose filename are stored within the array $test, using the sed command within a Perl script as follows: $count = 0; while ( $count < $#test ) { `sed -e 's/BIOGRF 321/BIOGRF 332/g' ${test} > 0`; `cat 0 >... (2 Replies)
Discussion started by: userix
2 Replies

10. Shell Programming and Scripting

how to get last value in an array in perl

Hi, I have a set of file names say: file1 file2 file3 .. filen I may just do a ls -l or however it works to read this list into an array... I need to pick the last file name that is "filen" from the list... your help is greatly appreciated.....hope im clear on my question... (7 Replies)
Discussion started by: meghana
7 Replies
Login or Register to Ask a Question