The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
C language to calculate mean,variance cdfd123 High Level Programming 9 11-12-2008 01:39 AM
Calculating quantiles in SQL figaro UNIX for Dummies Questions & Answers 3 11-20-2007 05:55 PM
calculating size of int apoorvasharma80 High Level Programming 10 11-01-2006 06:44 PM
PERL - DB programming satguyz UNIX for Dummies Questions & Answers 3 02-24-2006 02:45 PM
Calculating the day of the week ligs UNIX for Dummies Questions & Answers 4 10-27-2001 10:28 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 01-12-2008
cdfd123 cdfd123 is offline
Registered User
  
 

Join Date: Jul 2007
Posts: 112
Post calculating variance in perl programming

#!/usr/bin/perl -w
use strict;


open(FH,"$ARGV[0]") or die;
my @temp=<FH>;
close FH;
my $mean = Mean(\@temp);
my $var = variance(\@temp);
print "$var\n";
sub estimate_variance {
my ($arrayref) = @_;
my ($mean,$result) = (mean($arrayref),0);
foreach (@$arrayref) { $result += ($_ - $mean)**2 }
return $result / $#{$arrayref};
}
error shown:
Undefined subroutine &main::variance called at variance_try1.pl line 9.

wht can be possible solution??

Last edited by cdfd123; 01-12-2008 at 10:47 AM.. Reason: correcting string
  #2 (permalink)  
Old 01-12-2008
frank_rizzo frank_rizzo is offline Forum Advisor  
Resident BOFH
  
 

Join Date: Dec 2007
Posts: 426
variance () is not a Perl function. You will need to write your own or find a module that can do it.
  #3 (permalink)  
Old 01-12-2008
shamrock shamrock is offline Forum Advisor  
Registered User
  
 

Join Date: Oct 2007
Location: USA
Posts: 753
I though you were trying to do this in C
  #4 (permalink)  
Old 01-12-2008
fpmurphy's Avatar
fpmurphy fpmurphy is offline Forum Staff  
Moderator
  
 

Join Date: Dec 2003
Location: Florida
Posts: 1,934
It might be easier if you used a standard proven statistics module of which there are a number on CPAN.

For example, I have modified your code to work with the CPAN Module Statistics/Descriptive


Code:
#!/usr/local/bin/perl -w

use strict;
use Statistics::Descriptive;

open(FH, "$ARGV[0]") or die "No file specified\n";
my @temp=<FH>;
close FH;

my $stat = Statistics::Descriptive::Full->new();
$stat->add_data(\@temp);
my $mean = $stat->mean();
my $variance  = $stat->variance();
my $num  = $stat->count();

print "Number of Values = $num\n",
      "Mean             = $mean\n",
      "Variance         = $variance\n";

  #5 (permalink)  
Old 01-15-2008
cdfd123 cdfd123 is offline
Registered User
  
 

Join Date: Jul 2007
Posts: 112
Quote:
Originally Posted by shamrock View Post
I though you were trying to do this in C
Dear Shamrock
I have tried both using c and perl ..
So got results both in C and perl..
Thanks for curiosity
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 09:47 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0