caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] Easy solution in OCaml?
@ 2003-04-25  6:05 Siegfried Gonzi
  2003-04-25  8:19 ` sebastien FURIC
                   ` (3 more replies)
  0 siblings, 4 replies; 17+ messages in thread
From: Siegfried Gonzi @ 2003-04-25  6:05 UTC (permalink / raw)
  To: caml-list

Hi:

First off: It is not homework. I am 29 and writing my PhD in physics. 
Often I am contemplating whether it would be possible to use OCaml in 
combination with my beloved Bigloo to perform statistical evaluations. I 
am not sure whether there are any out there who /can/ do this 
evaluations with OCaml what you normally would do with Matlab. The 
problem what arises: type system and working against the compiler. In 
Scheme changing a solution from lets say integer-array to double-array 
is easy, but in Clean for example you would have to change all your 
dependencies.
I often skim over the libraries and came to the conclusion: C, C++, 
OCaml impossible for me to see any elegance; Clean a bit better; 
Bigloo/Scheme: I am not sure here, because everything looks the same 
maybe this is cheating, but I think it looks the most elegant and less 
intimitating from all.


Rationale: given a list of 12 month.  I would like to calculate the 
quarterly means and skip any nan. Easy? Yes it is but only on paper and 
in Scheme:

e.g: [1,2,4,-1,45,56,45,56,8]

nan=-1.0

result: [(1+2+3)/3, (45+56)/2, (45+56+8)/3]

I wrote a program in Scheme in order to perform the aformentioned task. 
In Scheme I wrote it as functional as possible, but I fail to do this in 
Ocaml. I mean doing it in OCaml via loops would be straightforward, but 
I didn't succeed in coming up with a solution of:

- relies on pattern matching?
- is short and and shouldn't resemble imperative style

Currently I do not have Clean installed, but I think I would have no 
problems to do the above requirement in Clean. I find the following 
irritating in OCaml:

- why if-then constructs? I think this was called "guards" in Clean? Can 
I use block-structure instead? I hate blocks ala Python but never mind 
to use it in Clean's way.
- why begin-end constructs? In Scheme begin-end constructs are ordinary, 
but I find it irritating to use it in OCaml.
- is it possible to give type information for readbility. In Clean I 
often wroten upon entry of the function:

sum:: Int Real -> Int
sum a b = ...

The above is not provocating. I learn best when I see how other would 
solve it in an /elegant functional way/.

Regards,
S. Gonzi

-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2003-04-29  6:18 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-04-25  6:05 [Caml-list] Easy solution in OCaml? Siegfried Gonzi
2003-04-25  8:19 ` sebastien FURIC
2003-04-25 15:46 ` Brian Hurt
2003-04-25 16:34   ` Ville-Pertti Keinonen
2003-04-26 13:45   ` Siegfried Gonzi
2003-04-26 21:51     ` Brian Hurt
2003-04-27 15:01       ` Siegfried Gonzi
2003-04-28 15:43         ` Brian Hurt
2003-04-29  5:46         ` John Max Skaller
2003-04-27 16:33       ` [Caml-list] Re: IEEE-754 (was: Easy solution in OCaml?) Christophe TROESTLER
2003-04-25 16:59 ` [Caml-list] Easy solution in OCaml? Markus Mottl
2003-04-26  6:25   ` Siegfried Gonzi
2003-04-27 14:13   ` Siegfried Gonzi
2003-04-27 16:54     ` Eray Ozkural
2003-04-28  5:00       ` Siegfried Gonzi
2003-04-28 17:45 ` malc
2003-04-28 18:16   ` Shivkumar Chandrasekaran

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).