caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: "James E. Scott" <james.scott@lexifi.com>
To: Lars Schouw <schouwla@yahoo.com>, caml-list@yquem.inria.fr
Subject: Re: [Caml-list] using gsl library....
Date: Wed, 18 May 2005 15:31:55 +0200	[thread overview]
Message-ID: <428B43CB.2070201@lexifi.com> (raw)
In-Reply-To: <20050518100453.1527.qmail@web50305.mail.yahoo.com>


Hi Lars,

it depends on how exactly you've installed it, but the following works 
here (on an MSVC build of both ocaml and GSL)

$ ocamlopt bigarray.cmxa -I +gsl gsl.cmxa  bs.ml -cclib gsl.lib

$ ./camlprog.exe
# gaussian with sigma=3
+0.9986501
+0.9986501
+0.9986501
+0.9986501
+0.9986501
+0.9986501
+0.9986501
+0.9986501
+0.9986501
+0.9986501

If gsl.cmxa is in ".." you should have:

C:\ocaml\gsl\ocamlgsl-0.4.0\examples>ocamlopt -cclib gsl.lib -I .. bigarray.cmxa gsl.cmxa bs.ml



James

Lars Schouw wrote:

>This is newbii !!!
>
>We are trying to use the ocmlgsl library.
>
>we are trying to call the ugaussian_P function
>belonging to Gsl_cdf.
>
>This works:
>
>open Gsl_fun;;
>
>let _ =
>Gsl_error.init () ;
>Gsl_rng.env_setup ()
>
>let rng = Gsl_rng.make (Gsl_rng.default ())
>
>let sigma = 3.
>
>let _ =
>Printf.printf "# gaussian with sigma=%g\n" sigma ;
>for i=1 to 10 do
>let x = Gsl_randist.gaussian rng 3. in
>Printf.printf "%+.7f\n" x
>done
>
>
>This does not compile:
>let _ =
>Gsl_error.init () ;
>Gsl_rng.env_setup ()
>
>let rng = Gsl_rng.make (Gsl_rng.default ())
>
>let sigma = 3.
>
>let _ =
>Printf.printf "# gaussian with sigma=%g\n" sigma ;
>for i=1 to 10 do
>let x = Gsl_cdf.ugaussian_P 3. in
>
>Printf.printf "%+.7f\n" x
>done
>
>C:\ocaml\gsl\ocamlgsl-0.4.0\examples>ocamlopt -cclib
>gsl.lib -I ..
>bigarray.cmxa
>..\gsl.cmxa bs.ml
>File "bs.ml", line 23, characters 12-31:
>Unbound value Gsl_cdf.ugaussian_P
>
>Do you have any ideas what I do wrong?
>
>I am using my own Windows 1.6 build of GSL that I
>build yesterday.
>
>Regards
>Lars Schouw
>
>BTW. I asked this on the ocaml_beginners mailing list
>and they told me this is to Windows specific.
>
>BTW2: From the ocaml_beginner mailing list
>It works on Debian if you do
>/usr/lib# ln -s libgsl.so.0 libgsl.so
>/usr/lib# ln -s libgslcblas.so.0 libgslcblas.so
>/usr/lib# ldconfig
>  
>
>>Then I compiled your second example with:
>>
>>$ ocamlopt -cclib -lgsl -I +gsl gsl.cmxa test.ml -o
>>    
>>
>test
>and ran it with:
>  
>
>>>$ ./test
>>># gaussian with sigma=3
>>>+0.9986501
>>>+0.9986501
>>>+0.9986501
>>>+0.9986501
>>>+0.9986501
>>>+0.9986501
>>>+0.9986501
>>>+0.9986501
>>>+0.9986501
>>>+0.9986501
>>>      
>>>
>
>BTW3: If I try this I get an unbound module error
>C:\ocaml\gsl\ocamlgsl-0.4.0\examples>ocamlopt -cclib
>-lgsl -I +gsl
>  
>
>>gsl.cmxa bs.ml -i bs
>>File "bs.ml", line 2, characters 0-12:
>>Unbound module Gsl_fun
>>    
>>
>
>
>		
>__________________________________ 
>Yahoo! Mail Mobile 
>Take Yahoo! Mail with you! Check email on your mobile phone. 
>http://mobile.yahoo.com/learn/mail 
>
>_______________________________________________
>Caml-list mailing list. Subscription management:
>http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
>Archives: http://caml.inria.fr
>Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
>Bug reports: http://caml.inria.fr/bin/caml-bugs
>
>
>  
>


      reply	other threads:[~2005-05-18 13:32 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-05-18 10:04 Lars Schouw
2005-05-18 13:31 ` James E. Scott [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=428B43CB.2070201@lexifi.com \
    --to=james.scott@lexifi.com \
    --cc=caml-list@yquem.inria.fr \
    --cc=schouwla@yahoo.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).