Skip Menu |

This queue is for tickets about the Inline-BC CPAN distribution.

Report information
The Basics
Id: 42786
Status: resolved
Priority: 0/
Queue: Inline-BC

People
Owner: rongrw [...] yahoo.com.au
Requestors: rongrw [...] yahoo.com.au
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.06
Fixed in: (no value)



Subject: Inline::BC cannot access the math library
I've attempted to use the math functions of the BC library which is built during the "make" step of Inline::BC. Unfortunately they don't appear to be accessible from Inline::BC and there doesn't seem to exist an "Inline BC => Config" option to load these functions. Would it be possible to implement a Config option, say MATHLIB, so that BC's math library is then loaded? For example, use Inline BC => "DATA" MATHLIB => 1; would now make the standard math functions accessible. I've attached the Perl script that I've been using up to now. The output from this script is shown below: <-----------------------Information Section-----------------------------------> Information about the processing of your Inline BC code: Your source code needs to be compiled. I'll use this build directory: /home/rong/dvlCorner/perlINL/_Inline/build/sinhcalc_pl_e17e and I'll install the executable as: /home/rong/dvlCorner/perlINL/_Inline/lib/auto/sinhcalc_pl_e17e/sinhcalc_pl_e17e.bc <-----------------------End of Information Section----------------------------> Runtime error (func=bc_sinh, adr=11): Function e not defined. N = 1 SINH = Runtime error (func=bc_sinh, adr=11): Function e not defined. N = 1.5 SINH = Runtime error (func=bc_sinh, adr=11): Function e not defined. N = 2 SINH = Runtime error (func=bc_sinh, adr=11): Function e not defined. N = 2.5 SINH = ... The equivalent code in BC language executes just fine when using "bc -l". Kind regards, Ron.
Subject: SINHCALC.PL
#!/usr/local/bin/perl #------------------------------------------------------------------------------ # PERL SCRIPT : sinhcalc.pl # VERSION : 1.00.0 # AUTHOR : Ron Grunwald # EMAIL : rongrw@yahoo.com.au # DATE WRITTEN : Jan 14, 2009 #------------------------------------------------------------------------------ MainFunction: { use strict; use warnings; use constant { MAIN_NAME => q{sinhcalc.pl}, BOOL_T => 1, BOOL_F => 0, ERR_FLAG => -1 }; use feature ":5.10"; use Inline BC => 'DATA', PRINT_INFO => 1; my ($n, $r); for ($n = 1; $n < 6.0; $n += 0.5) { $r = bc_sinh( $n ); say (" N = $n SINH = $r"); } } __DATA__ __BC__ /* Define the BC function sinh(u) */ define bc_sinh (u) { scale = 12 t = (e(u) - e(-u)) * 0.5 return ( t ) }
I've had a look at this, and I'm not sure how to make it work. I originally implemented this by taking the bc source code, heavily altering it to turn it into a sort of library, and then wrapping Inline::BC around it. I've tried the obvious things to activate the config globals for bc to access libmath functions, but it doesn't work. At the moment, I don't have the time to relearn it all, and figure out what should really happen - sorry. Cheers, Piers Harding. On Sun Jan 25 18:36:23 2009, rongrw wrote: Show quoted text
> I've attempted to use the math functions of the BC library which is > built during the "make" step of Inline::BC. Unfortunately they don't > appear to be accessible from Inline::BC and there doesn't seem to > exist > an "Inline BC => Config" option to load these functions. > > Would it be possible to implement a Config option, say MATHLIB, so > that > BC's math library is then loaded? For example, > > use Inline BC => "DATA" > MATHLIB => 1; > > would now make the standard math functions accessible. > > I've attached the Perl script that I've been using up to now. The > output > from this script is shown below: > > <-----------------------Information > Section-----------------------------------> > > Information about the processing of your Inline BC code: > > Your source code needs to be compiled. I'll use this build directory: > /home/rong/dvlCorner/perlINL/_Inline/build/sinhcalc_pl_e17e > > and I'll install the executable as: >
/home/rong/dvlCorner/perlINL/_Inline/lib/auto/sinhcalc_pl_e17e/sinhcalc_pl_e17e.bc Show quoted text
> > > <-----------------------End of Information > Section----------------------------> > Runtime error (func=bc_sinh, adr=11): Function e not defined. > N = 1 SINH = > Runtime error (func=bc_sinh, adr=11): Function e not defined. > N = 1.5 SINH = > Runtime error (func=bc_sinh, adr=11): Function e not defined. > N = 2 SINH = > Runtime error (func=bc_sinh, adr=11): Function e not defined. > N = 2.5 SINH = > ... > > > The equivalent code in BC language executes just fine when using "bc > -l". > > Kind regards, > Ron. >
Subject: Re: [rt.cpan.org #42786] Inline::BC cannot access the math library
Date: Tue, 27 Jan 2009 05:45:34 -0800 (PST)
To: bug-Inline-BC [...] rt.cpan.org, piers [...] ompka.net
From: Ron Grunwald <rongrw [...] yahoo.com.au>
Hi Piers, I would be quite interested in working out how to make the math library functions accessible from Inline::BC. This would give me an opportunity to become more familiar with Inline internals. Would you be OK with this? Cheers, Ron. [rongrw@yahoo.com.au, ron.grunwald@ecu.edu.au] Show quoted text
----- Original Message ----
> From: Piers Harding via RT <bug-Inline-BC@rt.cpan.org> > To: rongrw@yahoo.com.au > Sent: Monday, 26 January, 2009 10:20:04 AM > Subject: [rt.cpan.org #42786] Inline::BC cannot access the math library > > > > I've had a look at this, and I'm not sure how to make it work. I > originally implemented this by taking the bc source code, heavily > altering it to turn it into a sort of library, and then wrapping > Inline::BC around it. > I've tried the obvious things to activate the config globals for bc to > access libmath functions, but it doesn't work. > At the moment, I don't have the time to relearn it all, and figure out > what should really happen - sorry. > > Cheers, > Piers Harding. > > > On Sun Jan 25 18:36:23 2009, rongrw wrote:
> > I've attempted to use the math functions of the BC library which is > > built during the "make" step of Inline::BC. Unfortunately they don't > > appear to be accessible from Inline::BC and there doesn't seem to > > exist > > an "Inline BC => Config" option to load these functions. > > > > Would it be possible to implement a Config option, say MATHLIB, so > > that > > BC's math library is then loaded? For example, > > > > use Inline BC => "DATA" > > MATHLIB => 1; > > > > would now make the standard math functions accessible. > > > > I've attached the Perl script that I've been using up to now. The > > output > > from this script is shown below: > > > > <-----------------------Information > > Section-----------------------------------> > > > > Information about the processing of your Inline BC code: > > > > Your source code needs to be compiled. I'll use this build directory: > > /home/rong/dvlCorner/perlINL/_Inline/build/sinhcalc_pl_e17e > > > > and I'll install the executable as: > >
> /home/rong/dvlCorner/perlINL/_Inline/lib/auto/sinhcalc_pl_e17e/sinhcalc_pl_e17e.bc
> > > > > > <-----------------------End of Information > > Section----------------------------> > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > N = 1 SINH = > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > N = 1.5 SINH = > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > N = 2 SINH = > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > N = 2.5 SINH = > > ... > > > > > > The equivalent code in BC language executes just fine when using "bc > > -l". > > > > Kind regards, > > Ron. > >
Stay connected to the people that matter most with a smarter inbox. Take a look http://au.docs.yahoo.com/mail/smarterinbox
CC: bug-Inline-BC [...] rt.cpan.org
Subject: Re: [rt.cpan.org #42786] Inline::BC cannot access the math library
Date: Tue, 27 Jan 2009 17:13:48 +0000
To: Ron Grunwald <rongrw [...] yahoo.com.au>
From: Piers Harding <piers [...] ompka.net>
Hi - this is perfectly fine with me. I wish you luck, but I'm sure your C will be better than mine. Cheers, Piers Harding. On Tue, Jan 27, 2009 at 05:45:34AM -0800, Ron Grunwald wrote: Show quoted text
> Hi Piers, > > I would be quite interested in working out how to make the math library > functions accessible from Inline::BC. This would give me an opportunity > to become more familiar with Inline internals. > > Would you be OK with this? > > > Cheers, Ron. > [rongrw@yahoo.com.au, ron.grunwald@ecu.edu.au] > > > > ----- Original Message ----
> > From: Piers Harding via RT <bug-Inline-BC@rt.cpan.org> > > To: rongrw@yahoo.com.au > > Sent: Monday, 26 January, 2009 10:20:04 AM > > Subject: [rt.cpan.org #42786] Inline::BC cannot access the math library > > > > > > > > I've had a look at this, and I'm not sure how to make it work. I > > originally implemented this by taking the bc source code, heavily > > altering it to turn it into a sort of library, and then wrapping > > Inline::BC around it. > > I've tried the obvious things to activate the config globals for bc to > > access libmath functions, but it doesn't work. > > At the moment, I don't have the time to relearn it all, and figure out > > what should really happen - sorry. > > > > Cheers, > > Piers Harding. > > > > > > On Sun Jan 25 18:36:23 2009, rongrw wrote:
> > > I've attempted to use the math functions of the BC library which is > > > built during the "make" step of Inline::BC. Unfortunately they don't > > > appear to be accessible from Inline::BC and there doesn't seem to > > > exist > > > an "Inline BC => Config" option to load these functions. > > > > > > Would it be possible to implement a Config option, say MATHLIB, so > > > that > > > BC's math library is then loaded? For example, > > > > > > use Inline BC => "DATA" > > > MATHLIB => 1; > > > > > > would now make the standard math functions accessible. > > > > > > I've attached the Perl script that I've been using up to now. The > > > output > > > from this script is shown below: > > > > > > <-----------------------Information > > > Section-----------------------------------> > > > > > > Information about the processing of your Inline BC code: > > > > > > Your source code needs to be compiled. I'll use this build directory: > > > /home/rong/dvlCorner/perlINL/_Inline/build/sinhcalc_pl_e17e > > > > > > and I'll install the executable as: > > >
> > /home/rong/dvlCorner/perlINL/_Inline/lib/auto/sinhcalc_pl_e17e/sinhcalc_pl_e17e.bc
> > > > > > > > > <-----------------------End of Information > > > Section----------------------------> > > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > > N = 1 SINH = > > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > > N = 1.5 SINH = > > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > > N = 2 SINH = > > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > > N = 2.5 SINH = > > > ... > > > > > > > > > The equivalent code in BC language executes just fine when using "bc > > > -l". > > > > > > Kind regards, > > > Ron. > > >
> > > > Stay connected to the people that matter most with a smarter inbox. Take a look http://au.docs.yahoo.com/mail/smarterinbox
-- Home - http://www.piersharding.com xmpp:piers@ompka.net
Download (untitled)
application/pgp-signature 189b

Message body not shown because it is not plain text.

CC: Ron Grunwald <rongrw [...] yahoo.com.au>
Subject: Re: [rt.cpan.org #42786] Inline::BC cannot access the math library
Date: Fri, 1 May 2009 18:35:36 -0700 (PDT)
To: bug-Inline-BC [...] rt.cpan.org, piers [...] ompka.net
From: Ron Grunwald <rongrw [...] yahoo.com.au>
Dear Piers, I have been able to solve the problem of BC math library functions not available in Inline::BC. I've made a release candidate for version 0.08 of Inline::BC available at, http://au.geocities.com/rongrw/ For the final release, I would like to introduce a "ChangeLog" file so that all changes through the progressive versions of Inline::BC are easily viewable. Would you be agreeable to this? I have found working with Inline::BC very enjoyable and learned a lot during this process. You've indicated in a previous email that you couldn't afford any significant time for maintaining this module. If this is still the case, I would be delighted to take over maintainership of Inline::BC. Let me know how you feel. Kind regards, Ron. [rongrw@yahoo.com.au, ron.grunwald@ecu.edu.au] Show quoted text
----- Original Message ----
> From: Ron Grunwald <rongrw@yahoo.com.au> > To: bug-Inline-BC@rt.cpan.org; piers@ompka.net > Sent: Tuesday, 27 January, 2009 10:45:34 PM > Subject: Re: [rt.cpan.org #42786] Inline::BC cannot access the math library > > Hi Piers, > > I would be quite interested in working out how to make the math library > functions accessible from Inline::BC. This would give me an opportunity > to become more familiar with Inline internals. > > Would you be OK with this? > > > Cheers, Ron. > [rongrw@yahoo.com.au, ron.grunwald@ecu.edu.au] > > > > ----- Original Message ----
> > From: Piers Harding via RT > > To: rongrw@yahoo.com.au > > Sent: Monday, 26 January, 2009 10:20:04 AM > > Subject: [rt.cpan.org #42786] Inline::BC cannot access the math library > > > > > > > > I've had a look at this, and I'm not sure how to make it work. I > > originally implemented this by taking the bc source code, heavily > > altering it to turn it into a sort of library, and then wrapping > > Inline::BC around it. > > I've tried the obvious things to activate the config globals for bc to > > access libmath functions, but it doesn't work. > > At the moment, I don't have the time to relearn it all, and figure out > > what should really happen - sorry. > > > > Cheers, > > Piers Harding. > > > > > > On Sun Jan 25 18:36:23 2009, rongrw wrote:
> > > I've attempted to use the math functions of the BC library which is > > > built during the "make" step of Inline::BC. Unfortunately they don't > > > appear to be accessible from Inline::BC and there doesn't seem to > > > exist > > > an "Inline BC => Config" option to load these functions. > > > > > > Would it be possible to implement a Config option, say MATHLIB, so > > > that > > > BC's math library is then loaded? For example, > > > > > > use Inline BC => "DATA" > > > MATHLIB => 1; > > > > > > would now make the standard math functions accessible. > > > > > > I've attached the Perl script that I've been using up to now. The > > > output > > > from this script is shown below: > > > > > > <-----------------------Information > > > Section-----------------------------------> > > > > > > Information about the processing of your Inline BC code: > > > > > > Your source code needs to be compiled. I'll use this build directory: > > > /home/rong/dvlCorner/perlINL/_Inline/build/sinhcalc_pl_e17e > > > > > > and I'll install the executable as: > > >
> >
> /home/rong/dvlCorner/perlINL/_Inline/lib/auto/sinhcalc_pl_e17e/sinhcalc_pl_e17e.bc
> > > > > > > > > <-----------------------End of Information > > > Section----------------------------> > > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > > N = 1 SINH = > > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > > N = 1.5 SINH = > > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > > N = 2 SINH = > > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > > N = 2.5 SINH = > > > ... > > > > > > > > > The equivalent code in BC language executes just fine when using "bc > > > -l". > > > > > > Kind regards, > > > Ron. > > >
> > > > Stay connected to the people that matter most with a smarter inbox. Take a > look http://au.docs.yahoo.com/mail/smarterinbox
Enjoy a safer web experience. Upgrade to the new Internet Explorer 8 optimised for Yahoo!7. Get it now.
CC: undisclosed-recipients: ;
Subject: Re: [rt.cpan.org #42786] Inline::BC cannot access the math library
Date: Sat, 2 May 2009 14:30:15 +1200
To: Ron Grunwald via RT <bug-Inline-BC [...] rt.cpan.org>
From: Piers Harding <piers [...] ompka.net>
Hi Ron - be my guest - I'm quite happy for you to take over Inline::BC, and I'm happy that it is useful to someone. Cheers, Piers Harding. On Fri, May 01, 2009 at 09:35:58PM -0400, Ron Grunwald via RT wrote: Show quoted text
> Queue: Inline-BC > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=42786 > > > > Dear Piers, > > I have been able to solve the problem of BC math library functions not available in Inline::BC. I've made a release candidate for version 0.08 of Inline::BC available at, > > http://au.geocities.com/rongrw/ > > For the final release, I would like to introduce a "ChangeLog" file so that all changes through the progressive versions of Inline::BC are easily viewable. Would you be agreeable to this? > > I have found working with Inline::BC very enjoyable and learned a lot during this process. You've indicated in a previous email that you couldn't afford any significant time for maintaining this module. If this is still the case, I would be delighted to take over maintainership of Inline::BC. Let me know how you feel. > > > > Kind regards, > Ron. > [rongrw@yahoo.com.au, ron.grunwald@ecu.edu.au] > > > > ----- Original Message ----
> > From: Ron Grunwald <rongrw@yahoo.com.au> > > To: bug-Inline-BC@rt.cpan.org; piers@ompka.net > > Sent: Tuesday, 27 January, 2009 10:45:34 PM > > Subject: Re: [rt.cpan.org #42786] Inline::BC cannot access the math library > > > > Hi Piers, > > > > I would be quite interested in working out how to make the math library > > functions accessible from Inline::BC. This would give me an opportunity > > to become more familiar with Inline internals. > > > > Would you be OK with this? > > > > > > Cheers, Ron. > > [rongrw@yahoo.com.au, ron.grunwald@ecu.edu.au] > > > > > > > > ----- Original Message ----
> > > From: Piers Harding via RT > > > To: rongrw@yahoo.com.au > > > Sent: Monday, 26 January, 2009 10:20:04 AM > > > Subject: [rt.cpan.org #42786] Inline::BC cannot access the math library > > > > > > > > > > > > I've had a look at this, and I'm not sure how to make it work. I > > > originally implemented this by taking the bc source code, heavily > > > altering it to turn it into a sort of library, and then wrapping > > > Inline::BC around it. > > > I've tried the obvious things to activate the config globals for bc to > > > access libmath functions, but it doesn't work. > > > At the moment, I don't have the time to relearn it all, and figure out > > > what should really happen - sorry. > > > > > > Cheers, > > > Piers Harding. > > > > > > > > > On Sun Jan 25 18:36:23 2009, rongrw wrote:
> > > > I've attempted to use the math functions of the BC library which is > > > > built during the "make" step of Inline::BC. Unfortunately they don't > > > > appear to be accessible from Inline::BC and there doesn't seem to > > > > exist > > > > an "Inline BC => Config" option to load these functions. > > > > > > > > Would it be possible to implement a Config option, say MATHLIB, so > > > > that > > > > BC's math library is then loaded? For example, > > > > > > > > use Inline BC => "DATA" > > > > MATHLIB => 1; > > > > > > > > would now make the standard math functions accessible. > > > > > > > > I've attached the Perl script that I've been using up to now. The > > > > output > > > > from this script is shown below: > > > > > > > > <-----------------------Information > > > > Section-----------------------------------> > > > > > > > > Information about the processing of your Inline BC code: > > > > > > > > Your source code needs to be compiled. I'll use this build directory: > > > > /home/rong/dvlCorner/perlINL/_Inline/build/sinhcalc_pl_e17e > > > > > > > > and I'll install the executable as: > > > >
> > >
> > /home/rong/dvlCorner/perlINL/_Inline/lib/auto/sinhcalc_pl_e17e/sinhcalc_pl_e17e.bc
> > > > > > > > > > > > <-----------------------End of Information > > > > Section----------------------------> > > > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > > > N = 1 SINH = > > > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > > > N = 1.5 SINH = > > > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > > > N = 2 SINH = > > > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > > > N = 2.5 SINH = > > > > ... > > > > > > > > > > > > The equivalent code in BC language executes just fine when using "bc > > > > -l". > > > > > > > > Kind regards, > > > > Ron. > > > >
> > > > > > > > Stay connected to the people that matter most with a smarter inbox. Take a > > look http://au.docs.yahoo.com/mail/smarterinbox
> > > > Enjoy a safer web experience. Upgrade to the new Internet Explorer 8 optimised for Yahoo!7. Get it now.
-- Home - http://www.piersharding.com xmpp:piers@ompka.net
Download (untitled)
application/pgp-signature 189b

Message body not shown because it is not plain text.

CC: bug-Inline-BC [...] rt.cpan.org
Subject: Re: [rt.cpan.org #42786] Inline::BC cannot access the math library
Date: Sat, 2 May 2009 14:31:42 +1200
To: Ron Grunwald <rongrw [...] yahoo.com.au>
From: Piers Harding <piers [...] ompka.net>
Hi Ron - be my guest - I'm quite happy for you to take over Inline::BC, and I'm happy that it is useful to someone. Cheers, Piers Harding. On Fri, May 01, 2009 at 06:35:36PM -0700, Ron Grunwald wrote: Show quoted text
> > Dear Piers, > > I have been able to solve the problem of BC math library functions not available in Inline::BC. I've made a release candidate for version 0.08 of Inline::BC available at, > > http://au.geocities.com/rongrw/ > > For the final release, I would like to introduce a "ChangeLog" file so that all changes through the progressive versions of Inline::BC are easily viewable. Would you be agreeable to this? > > I have found working with Inline::BC very enjoyable and learned a lot during this process. You've indicated in a previous email that you couldn't afford any significant time for maintaining this module. If this is still the case, I would be delighted to take over maintainership of Inline::BC. Let me know how you feel. > > > > Kind regards, > Ron. > [rongrw@yahoo.com.au, ron.grunwald@ecu.edu.au] > > > > ----- Original Message ----
> > From: Ron Grunwald <rongrw@yahoo.com.au> > > To: bug-Inline-BC@rt.cpan.org; piers@ompka.net > > Sent: Tuesday, 27 January, 2009 10:45:34 PM > > Subject: Re: [rt.cpan.org #42786] Inline::BC cannot access the math library > > > > Hi Piers, > > > > I would be quite interested in working out how to make the math library > > functions accessible from Inline::BC. This would give me an opportunity > > to become more familiar with Inline internals. > > > > Would you be OK with this? > > > > > > Cheers, Ron. > > [rongrw@yahoo.com.au, ron.grunwald@ecu.edu.au] > > > > > > > > ----- Original Message ----
> > > From: Piers Harding via RT > > > To: rongrw@yahoo.com.au > > > Sent: Monday, 26 January, 2009 10:20:04 AM > > > Subject: [rt.cpan.org #42786] Inline::BC cannot access the math library > > > > > > > > > > > > I've had a look at this, and I'm not sure how to make it work. I > > > originally implemented this by taking the bc source code, heavily > > > altering it to turn it into a sort of library, and then wrapping > > > Inline::BC around it. > > > I've tried the obvious things to activate the config globals for bc to > > > access libmath functions, but it doesn't work. > > > At the moment, I don't have the time to relearn it all, and figure out > > > what should really happen - sorry. > > > > > > Cheers, > > > Piers Harding. > > > > > > > > > On Sun Jan 25 18:36:23 2009, rongrw wrote:
> > > > I've attempted to use the math functions of the BC library which is > > > > built during the "make" step of Inline::BC. Unfortunately they don't > > > > appear to be accessible from Inline::BC and there doesn't seem to > > > > exist > > > > an "Inline BC => Config" option to load these functions. > > > > > > > > Would it be possible to implement a Config option, say MATHLIB, so > > > > that > > > > BC's math library is then loaded? For example, > > > > > > > > use Inline BC => "DATA" > > > > MATHLIB => 1; > > > > > > > > would now make the standard math functions accessible. > > > > > > > > I've attached the Perl script that I've been using up to now. The > > > > output > > > > from this script is shown below: > > > > > > > > <-----------------------Information > > > > Section-----------------------------------> > > > > > > > > Information about the processing of your Inline BC code: > > > > > > > > Your source code needs to be compiled. I'll use this build directory: > > > > /home/rong/dvlCorner/perlINL/_Inline/build/sinhcalc_pl_e17e > > > > > > > > and I'll install the executable as: > > > >
> > >
> > /home/rong/dvlCorner/perlINL/_Inline/lib/auto/sinhcalc_pl_e17e/sinhcalc_pl_e17e.bc
> > > > > > > > > > > > <-----------------------End of Information > > > > Section----------------------------> > > > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > > > N = 1 SINH = > > > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > > > N = 1.5 SINH = > > > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > > > N = 2 SINH = > > > > Runtime error (func=bc_sinh, adr=11): Function e not defined. > > > > N = 2.5 SINH = > > > > ... > > > > > > > > > > > > The equivalent code in BC language executes just fine when using "bc > > > > -l". > > > > > > > > Kind regards, > > > > Ron. > > > >
> > > > > > > > Stay connected to the people that matter most with a smarter inbox. Take a > > look http://au.docs.yahoo.com/mail/smarterinbox
> > > > Enjoy a safer web experience. Upgrade to the new Internet Explorer 8 optimised for Yahoo!7. Get it now.
-- Home - http://www.piersharding.com xmpp:piers@ompka.net
Download (untitled)
application/pgp-signature 189b

Message body not shown because it is not plain text.

RT-Send-CC: piers [...] ompka.net
Version 0.08 of Inline::BC is now released. This version successfully loads and provides access to BC's math library functions.