Re: how to transform xyz into matrix

2012-06-29 Thread Jim Gibson
On Jun 29, 2012, at 9:31 AM, lina wrote: > On Sat, Jun 30, 2012 at 12:21 AM, John W. Krahn wrote: >> lina wrote: >>> >> >> >> >> $ echo "0.35 1.32 3 >> >> 0.35 4.35 2 >> 0.36 0.36 1 >> 0.36 1.32 1 >> 0.36 1.45 1 >> 0.36 1.46 1" | perl -e' >> >> my ( %columns, %data ); >> while ( <> ) { >

Re: SMS services

2012-06-29 Thread Mike Blezien
Ok I'll need to check into this SMPP server, not real sure what that is though thanks, Mike(mickalo)Blezien =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Thunder Rain Internet Publishing -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- - Original Message - From: Kwaku Addo O

Re: SMS services

2012-06-29 Thread Kwaku Addo Ofori
Hi Mike, You can try the code below after you have installed the module: --code-begins-- #!/usr/bin/perl use Net::SMPP; $smpp = Net::SMPP->new_transceiver('127.0.0.1', port=>1234, system_id=>'username', password=>'password') or die; $resp_pdu = $smpp->submit_sm(destination_addr => '+123456789'

Re: SMS services

2012-06-29 Thread Kwaku Addo Ofori
Hi Mike, If you want a simple smpp client, check out Net::SMPP. I've been using it for years as a simple smpp client test tool without any issues. It's quite simple to use. Kwaku. On Fri, Jun 29, 2012 at 6:52 PM, Mike Blezien wrote: > Hello, > > we would like to setup a Perl script for sending

SMS services

2012-06-29 Thread Mike Blezien
Hello, we would like to setup a Perl script for sending SMS messages. I found several different Perl modules on CPAN for doing this and was wondering if there are recommended messaging services that others have used with these modules that they could recommend. And what module(s) they recommen

Re: how to transform xyz into matrix

2012-06-29 Thread lina
On Sat, Jun 30, 2012 at 12:21 AM, John W. Krahn wrote: > lina wrote: >> >> On Thu, Jun 28, 2012 at 4:44 PM, John W. Krahn  wrote: >>> >>> lina wrote: I have some data like: 0.35 3.41 1 0.35 4.24 1 0.35 4.35 2 0.36 0.36 1 0.36 1.32 1 0.36 1.45 1 >>>

Re: how to transform xyz into matrix

2012-06-29 Thread John W. Krahn
lina wrote: On Thu, Jun 28, 2012 at 4:44 PM, John W. Krahn wrote: lina wrote: I have some data like: 0.35 3.41 1 0.35 4.24 1 0.35 4.35 2 0.36 0.36 1 0.36 1.32 1 0.36 1.45 1 0.36 1.46 1 wish the output look like 0.36 1.32 1.45 1.46 3.41 4.24 4.35 0.35 0 0 0 0

Re: how to transform xyz into matrix

2012-06-29 Thread lina
On Fri, Jun 29, 2012 at 10:10 PM, Jim Gibson wrote: > > On Jun 29, 2012, at 6:09 AM, lina wrote: >>> I have some data like: 0.35 3.41 1 0.35 4.24 1 0.35 4.35 2 0.36 0.36 1 0.36 1.32 1 0.36 1.45 1 0.36 1.46 1 wish the output look like

Re: how to transform xyz into matrix

2012-06-29 Thread Jim Gibson
On Jun 29, 2012, at 6:09 AM, lina wrote: >> >>> I have some data like: >>> >>> 0.35 3.41 1 >>> 0.35 4.24 1 >>> 0.35 4.35 2 >>> 0.36 0.36 1 >>> 0.36 1.32 1 >>> 0.36 1.45 1 >>> 0.36 1.46 1 >>> >>> >>> wish the output look like >>> >>>0.36 1.32 1.45 1.46 3.41 4.24 4.35 >>> 0.35 0

Re: how to transform xyz into matrix

2012-06-29 Thread lina
On Thu, Jun 28, 2012 at 4:44 PM, John W. Krahn wrote: > lina wrote: >> >> Hi, > > > Hello, > > >> I have some data like: >> >> 0.35 3.41 1 >> 0.35 4.24 1 >> 0.35 4.35 2 >> 0.36 0.36 1 >> 0.36 1.32 1 >> 0.36 1.45 1 >> 0.36 1.46 1 >> >> >> wish the output look like >> >>        0.36 1.32 1.45 1.46