On Thu, 17 Mar 2011 02:26:06 +0700, indrag wrote:
> this is the code:
>
> #!/usr/bin/perl
>
> use NetCDF;
The error is coming out of NetCDF.pm. Check all of the calls you make to
functions from that module against its documentation.
Did you write the progr
> "i" == indrag writes:
i> #!/usr/bin/perl
i> use NetCDF;
use strict ;
use warnings ;
those ask perl to help you. always use them. you will have to declare
all your vars with my when using strict but that is the point.
i> if(@ARGV == 6){
that makes no sense. you look for 6 args i
}
if($AZ[$j] > $AZ1 && $AZ[$j] < $AZ2 ){
$VEL[$j*$BIN_NUM+$i]= $missing_value[0];
}
}
}
NetCDF::varput($ncid,$varid,\@start,\@count,\@VEL);
NetCDF::close($ncid);
}
if($opt_
But, with out
the context of the code
B
On Wed, Mar 16, 2011 at 11:44 AM, wrote:
> how to overcome this error :
>
> MRF-ERROR: Is a directory
>
>
> regards,
> Indra
>
> --
> To unsubscribe, e-mail: beginners-unsubscr...@perl.org
> For additional com
On Wed, Mar 16, 2011 at 11:44 AM, wrote:
> how to overcome this error :
>
> MRF-ERROR: Is a directory
>
>
>
Please post the entire code.
~Parag
On 11-03-16 02:44 PM, ind...@students.itb.ac.id wrote:
how to overcome this error :
MRF-ERROR: Is a directory
Please show the code.
--
Just my 0.0002 million dollars worth,
Shawn
Confusion is the first step of understanding.
Programming is as much about organization and
how to overcome this error :
MRF-ERROR: Is a directory
regards,
Indra
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/