newLISP Fan Club

Forum => newLISP in the real world => Topic started by: pjot on November 06, 2004, 08:21:39 AM

Title: Passing FLOAT's
Post by: pjot on November 06, 2004, 08:21:39 AM
Hi,



Using this Shared Object:

#include <stdio.h>
#include <stdlib.h>

int int_print (int i)
{
printf("%dn", i);
return(0);
}
int float_print (float f)
{
printf("%fn", f);
return(0);
}

...and the following newLisp code:

#!/usr/bin/newlisp
(import "./lib.so" "int_print")
(import "./lib.so" "float_print")
(int_print 345)
(float_print 1.2)
(exit)

...delivers this result:

345

0.000000



It seems that passing a float to a C function does not work? Or is there something wrong in the code?



Also, is it possible to pass an array to a C function?



Peter
Title:
Post by: pjot on November 06, 2004, 08:37:34 AM
Passing an INT array to a C function works:



C-code:

int array_print (int i[])
{
printf("%dn", i[0]);
printf("%dn", i[1]);
return(0);
}
--------------------------------------------------
NewLisp:

(import "./lib.so" "array_print")
(array_print (append (pack "lu" 16432) (pack "lu" 54321)))

An array with floats also works fine this way. Now for the single floats.... ;-)
Title:
Post by: eddier on November 06, 2004, 08:40:06 AM
I've seen this error (%f and double) or (%lf and float) many times in plain C.  I bet if you change float to double you will have no problem.



Eddie
Title:
Post by: pjot on November 06, 2004, 08:47:02 AM
No; suppose I change my C-function this way:

int float_print (float f)
{
printf("%fn", f);
printf("%gn", f);
printf("%en", f);
return(0);
------------------------------------------
(import "./float.so" "float_print")
(float_print 1.2)
}

Then the result is:

0.000000

4.17233e-08

4.172325e-08



Strange! Also PACKing within newLisp does not help me here.
Title:
Post by: eddier on November 06, 2004, 09:21:33 AM
Yes, but doesn't newlisp use doubles internally and not floats?

in (float_print 1.2) the 1.2 is being passed as a double isn't it?



Eddie
Title:
Post by: pjot on November 06, 2004, 09:29:12 AM
So you mean it's never going to work anyway?



Even if it is passed as double, at least one of the PRINTF modifiers should show the number correctly then?
Title:
Post by: newdep on November 06, 2004, 09:29:37 AM
looks like an "Endian" issue to me...
Title:
Post by: Lutz on November 06, 2004, 09:33:25 AM

int float_print(double num)
{
printf(">>%lf<<", num);

return(0);
}

gcc test.c -shared -o testlib.so

newLISP v.8.2.6 Copyright (c) 2004 Lutz Mueller. All rights reserved.

> (import "/usr/home/nuevatec/testlib.so" "float_print")
float_print <281A153C>
> (float_print 1.234)
>>1.234000<<0

>



Eddie is right: newLISP uses double



Lutz
Title:
Post by: newdep on November 06, 2004, 09:34:45 AM
never take a posting too literaly...:-)



> (unpack "lf" 1.2)

Segmentation fault



:-)
Title:
Post by: pjot on November 06, 2004, 09:36:10 AM
Yes I understand, but this is too bad; it means that many C-library's cannot accept a 'float' coming in from newLisp. There are functions which declare their arguments as float, I cannot pass float values to them.
Title:
Post by: Lutz on November 06, 2004, 09:41:43 AM
yes you can:



(get-integer (pack "f" 1.23)) => 1067282596



The integer coming out is what you pass to the function which takes float.





Lutz
Title:
Post by: pjot on November 06, 2004, 09:43:19 AM
Great! This is what I was looking for.



Thanks Lutz!!
Title:
Post by: Lutz on November 06, 2004, 09:47:15 AM
Sorry doesn't work ... but should ... investigating ...



Lutz
Title:
Post by: newdep on November 06, 2004, 09:52:24 AM
.. its floating segmf's today...:-)



> (get-integer (get-float (pack "lf" (float 12314127.641234))))

Segmentation fault
Title:
Post by: Lutz on November 06, 2004, 09:57:03 AM
Works just fine, I forgot to compile:



#include <stdio.h>



int float_print(float num)

{

printf(">>%f<<", num);



return(0);

}



> (import "/usr/home/nuevatec/testlib.so" "float_print")

float_print <281A153C>

> (float_print (get-integer (pack "f" 1.234)))

>>1.234000<<0

>





Lutz
Title:
Post by: pjot on November 06, 2004, 09:58:15 AM
I don't want to be disturbing but it works for me!

int float_print (float f)
{
printf("%fn", f);
printf("%gn", f);
printf("%en", f);
return(0);
}
-----------------------------------------------
NewLisp:
(import "./float.so" "float_print")
(float_print (get-integer (pack "f" 1.23)))

Result:

1.230000

1.23

1.230000e+00
Title:
Post by: Lutz on November 06, 2004, 09:58:45 AM
Norman, Norman ... too much of that dark beer ;)



Lutz
Title:
Post by: Lutz on November 06, 2004, 09:59:20 AM
yes, it works just fine, I forgot to compile



Lutz
Title:
Post by: pjot on November 06, 2004, 09:59:44 AM
Yeah he is drinking too much... ;-)
Title:
Post by: newdep on November 06, 2004, 10:06:39 AM
Yes we call it "Dentergems Double" But it floats good ;-)
Title:
Post by: Lutz on November 06, 2004, 10:09:41 AM
I am still waiting for that case of "Dentergems Double" you guys promised me some time ago ...



Lutz
Title:
Post by: newdep on November 06, 2004, 10:11:04 AM
Heee Lutz yes your right ;-)



Pjot..how about it? Your traveling to the states next week!

Cant you post a case for Lutz?
Title:
Post by: pjot on November 06, 2004, 10:12:36 AM
Well, I will be in Utah, not Florida unfortunately... ;-)
Title:
Post by: Lutz on November 06, 2004, 10:16:27 AM
In Utah on Sundays they don't serve beer with more than 6% alcohol content . In Florida they don't sell beer in supermarkets before noon on Sundays (so people don't come drunken to church :) )



Lutz
Title:
Post by: newdep on November 06, 2004, 10:19:17 AM
hahahah..sounds logic... Well here in The Netherlands we have this standard

environment-rule "where a church is is a bar" ;-) So actualy every town with a church

has the bar across the street ;-)  Im wont explain the results ;-)