vote up 16 vote down star
6

I am coming from C/C++, Python background and I am looking to learn a functional language that (Hopefully) can do

  1. Serious Matrix Computation
  2. expressive
  3. real world modelling
  4. database integration
  5. concurrency/parallelism
  6. Battery (library) included
  7. Strong integration with other well tuned library in other language
  8. Have a positive future

I have looked into

  1. Clojure
  2. Scala
  3. Haskell
  4. Scheme
  5. Ocaml
  6. Erlang

Clojure seems to nice for concurrency but it is on JVM. Is there other pros and cons for clojure or other language?

Thanks

flag

57% accept rate
4  
+1 for Haskell because SO has more "haskell" tagged questions than your other options :) – yairchu Aug 28 at 21:27
Erlang match your needs, especially parallellism. However, matrix comp. libs and such are a strong point. – psyeugenic Aug 28 at 23:37
1  
Why are you saying "... but it is on JVM" as if that is a disadvantage? Why do you think that is a disadvantage? – Jesper Aug 29 at 6:06
2  
should have been tagged with [flame-war]? – yairchu Aug 29 at 10:38
@Jesper JVM is slower than compiled language after all in floating point computation. – leon Aug 29 at 13:27
show 1 more comment

14 Answers

vote up 17 vote down check

I'd advise going with Haskell. Haskell's GHC compiler is on par with C compilers, and will leave in the dust the bytecode-compiled languages, JIT or no JIT. This happens because Haskell's design ensure that a wide range of techniques are possible for optimization.

Now, if you are going to stay on the JVM, I'd recommend either Clojure or Scala. They both can use Java's extensive library support. In fact, they both fit all your requisites (imho, since at least one of them is subjective :).

Scala would be easier to pick up, because you can start with the same style you are already proficient with, and introduce functional features as the time goes. Besides, not being solely functional makes it possible to selectively jump back into imperative style if the performance with a functional style for a particular algorithm isn't making the grade. On Scala, look also at the Scala Query (type safe database manipulation), Scalala (linear algebra, matlab-like) and Scalax (serious functional stuff, Haskell-like) external libraries.

Clojure would have the advantage of accelerating functional learning by virtue of being painful to do anything else. I don't know it enough to recommend any Clojure-specific libraries.

I recommend you take a look at those Scala libraries, and any Clojure libraries people recommend, and answers to questions involving code for both languages to gauge the expressiveness and style. As for Haskell... I recommend diving right in -- trying the waters first might scare you. :-)

link|flag
5  
@Paul Nathan: Completely false. I use Haskell for serious work with ease. Purity is extremely helpful, and doesn't really get in the way. – jrockway Aug 29 at 5:52
9  
@Paul: WTF is an "'Ooo, it can do X' language"? You dislike languages that are capable of doing things? – Chuck Aug 29 at 6:00
3  
@Pavel: sure, show non-flawed tests to the contrary, and I'll remove that statement. – Daniel Sep 1 at 18:40
2  
@Paul: There is no such thing as monad arcaneity. Monads are just a possible way of handling IO without having to alter everything a language has to offer. Other languages just take the easy way out and alter the language to include them. I assure you that once you get use to the IO Monad in Haskell it becomes second nature and you don't have any problems with it! That said Haskell's strong point imho is the backend where there are no states or any other side-effect (that is its ideal for what the asker requires). – Andrew Calleja Sep 6 at 18:32
2  
As Pavel explained, this post is pure fanboi fantasy and you can easily find overwhelming evidence to the contrary. In reality, Haskell is nowhere near as fast as JVM- or CLR-based languages let alone C. If you're interested in learning the truth, check out the Burrows Wheeler Transform benchmark which is still orders of magnitude slower in Haskell than other languages including OCaml, F# and C. Even generic parallel quicksort is an unsolved problem in Haskell but trivial to implement in other languages. – Jon Harrop Sep 7 at 21:16
show 18 more comments
vote up 1 vote down

OK, I know I'm late... But it seems that Scheme can actually be a good option. There was recently some discussion in the chicken-users mailing list, and it seems that Chicken Scheme can be vary fast for numeric computing using the "Crunch" extension. And Scheme is nice because it's a very expressive language, has support for interactive development and is conceptually very simple.

And Chicken supports lots of SRFIs! There are also other extensions and libraries available (see the Eggs index).

link|flag
vote up 5 vote down

Options you didn't list, but should look into:

Because of the GUI front end and strong mathematical typography support, many don't realize that Mathematica is in fact a programming language. You don't even have to use the GUI: you can run the evaluation engine in the background, just as they do for Wolfram Alpha. As you'd expect of a mathematical programming language, it can be used in a purely functional manner, though it also has procedural and OO features. It's not side-effect-free, as you can have variables that vary, but you can program without using those parts of the language, if you want. It has everything you asked for. The only question is whether you can cope with the license cost.

R is also a functional language, in the same impure way as, say, JavaScript: functions are first-class objects, but there are also variables-that-vary. It's more what the average programmer would think of as a "language" than Mathematica, but pretty much across the board not as powerful except in its primary domain, statistics. It's a general-purpose programming language, not tied to statistics or even math and science, but because so few people use it outside these domains, getting good info on how to use it that way can be difficult.

link|flag
1  
coming from a statistics and pure maths background, I have in fact tried both. I do not like mathematica is because 1) slow 2) irregular syntax (I started playing with mathematica even before I started to learn C and Java) 3) not open source 4) not free 5) not wildly accepted in business world R is nicer and it is getting bigger in time. However R is 1) Ill documented (I tried to find an intro book for R programming language. However everything I found is just application book in statistcs. I had to dig through language specification which is not ideal. – leon Sep 1 at 23:01
2) irregular object models that have almost no raedable documentation The only doc I found on web was the original implementation specification... like something I can read in few hours to get it right. 3) librarys are written by statistician rather than experienced programmer. The API are not properly designed for smooth work flow. 4) No good IDE that works well with R. Tried Eclipes and Emacs ESS but they are far from production level. correct me if i am wrong. – leon Sep 1 at 23:09
1  
4) Lastly... took me forever to do string manipulation... still failed to get it write. I spent a day to dig doc but i spent 2 hours to implement dataframe and linear reg in Python.... I wish someone can write a better interpreter and organise the Docs... then I will dive into more. – leon Sep 1 at 23:12
@leon: While you should always be looking for better ways to do things, don't get trapped looking for the perfect tool. No such thing. Regarding books specifically about R the programming language, I like S Programming by Venables and Ripley best. Not a thing in it about statistics. (They have a different book for that.) Despite the title, it also covers the differences in R. It's 9 years old, but the core language hasn't changed much since then. Chambers' Software for Data Analysis is similar, only a year old, and covers R specifically, but I don't think it's actually better. – Warren Young Sep 2 at 3:52
1  
The original intend is to look for a FP for scientific programming. The in-scalability of R and Mathematica is enough to be eliminated on the list. I will look into S programming though. Thanks – leon Sep 2 at 13:17
show 1 more comment
vote up 3 vote down

Scientific computation is two-fold.

Quick prototyping

On one hand you may need to write a lot of prototype code, and need to write it fast. Often, this code is used just once. So, there is a need in simple and expressive languages with solid library support. In my opinion, Python is the best suited for this purpose. And I hope it will finally dethrone matlab in this area. I don't know any of the functional languages which can compete with Python right now.

Performance computing

On the other hand, you may need to solve computationally intensive problems, and performance is important. So, you need an optimizing compiler and parallel computations (both multi-core and multi-machine). And you need to make it work on clusters (i.e. on Linux) and support standard parallel APIs (MPI and OpenMP).

From you list probably only Scheme is not suitable for performance computing. The others may or may not be OK. I don't know. Anyway, the result will usually be 2 or 3 times slower than pure hand-optimized C/C++/Fortran/Java.

I know that Haskell used to lag behind in this area, but with Data Parallel Haskell this may change. It's status is technology preview right now (and stable in ghc 6.12?).

There is also a field of symbolic computing, which I am fairly remote from. I expect that some of the functional languages may really shine in this area if there are suitable libraries.

Shootout

I think you can also consult shootout.alioth.debian.org to see the performance limits in similar number-crunching tasks on a multi-core CPU. Sure, pure C rules them all, but most of the compiled functional languages are good enough:

  1. Double-precision N-body simulation

  2. Eigenvalue using the power method

Libraries

Scientific computing depends on the existence of libraries in your domain (unless you are ready to write your own). Just for the reference:

Numeric and scientific libs for Python

Haskell math libraries

OCaml math libraries

link|flag
Some of our numerical routines in F# are several times faster than Intel's Fortran code on Intel's own hardware. Vanilla C and C++ don't handle multicores at all well. – Jon Harrop Dec 12 at 6:17
I agree, that C and C++ are not the easiest languages to write parallel code, and sequential code cannot compete on SMP machines. Pure functional programming is surely more multi-core friendly, but I am not so sure if unpure F# is really capable of automatic parallelism. (Manually parallelized code may be efficient in any language). I expect F# to be very competitive though, with a performance pattern of OCaml more or less (less in Linux). I don't know if F# math libraries are good. What is against F# for scientific computing is its subpar performance in Linux. – jetxee Dec 16 at 13:24
vote up 0 vote down

Implicit is you want library functionality at least equal scipy / numpy/ matplotlib , along with the huge number of C / linux tools available: R, GSL, sage, octave. Also tools to integrate relational DB, key-value and doc stores, hadoop, etc. Probably only java and .NET libs are going to give that kind of batteries included.

Erlang is the only FP language I've learned in anger. It's "mature" for its traditional server/middleware core competency, but there's a recognition that it could do a lot more. For example, web app frameworks need decent regex engine to do URL recognition and generation, and there was that Tim Bray todo about Erlang and apache logfiles (WideFinder) so the erlang core team is working on it (Robert Virding's libraries).

So it's today not a language known for matrix and statistical math, map-reduce and SIMD data analytics, but given its push into new types of apps, it could surprise you, and the VM's ability to spawn, manage, and terminate ten of thousands of processes and more (gracefully) is unrivaled.

link|flag
vote up 3 vote down

I think that Scala can win big in this area. At work I use Scala for data analysis and it works out quite well being a hybrid of functional and object-oriented programming languages. You get all of the Java goodness for free:

  • Java standard library
  • Huge ecosystem of the Java world (including many numerical, statistical and simulation packages)
  • JVM (JIT compilation, garbage collection, etc)

Plus, you get the good stuff which Scala offers.

  • Strong and expressive type system (actually type-safe, unlike Java)
  • Pattern matching
  • Actors for concurrency (like Erlang)
  • Flexible syntax for quick-and-easy mini languages (and good parsers for DSLs)
  • Native XML type

In my opinion, Scala does a great job of bridging the gap between many different paradigms while still being able to fit in with existing infrastructure.

link|flag
All the Java-related advantages are also true for Clojure and for JVM-based implementations of Common Lisp and Scheme. – Jay Nov 7 at 12:45
+1. Fascinating. – Jon Harrop Dec 12 at 6:13
vote up 3 vote down

F# has the most potential, as a first-class citizen in .NET/Windows world.

Nearly all functional languages exist mostly as academic curiosities. If that suits your needs, fine. I lean towards the "if its popular, it's not bad." school of thought.

link|flag
The question was about scientific programming. You didn't explain how .NET is better for this task (performance, scalability, special domain-specific libraries, availability on scientific hardware (see top500)). => -1. – jetxee Sep 1 at 16:34
Why, no. No, I didn't. I suggested F# as the functional language with the brightest future. If it really does have the brightest future, the technical questions that you mention will be resolved over time. – Paul Nathan Sep 6 at 0:08
Visual Basic had a bright past, but it never became important for scientific computing. I don't see any guarantee that even if F# is successful as a default windows/.net functional language, it becomes useful for scientific computing. And I believe that today F# is not ready for the task. – jetxee Sep 7 at 8:40
@jextee: F# is already widely used for scientitic computing. – Jon Harrop Sep 7 at 21:26
vote up 8 vote down

After Erlang and OCaml you should also look at J. It is ultimate scientific language.

link|flag
J was going to be my answer as well. I've never used it, but I like what it has to offer. It is a language will teach you thing you can use just by reading the docs. – John F. Miller Aug 31 at 4:19
vote up 10 vote down

I can only speak about Clojure since I have only limited experience with the other languages.

The advantages of Clojure:

  1. Full JVM integration. You can use any library written in Java, so you will have no dearth of well-tuned, mature libraries, such as those from Sun or Apache Commons. Covers your concerns [6] and [7].
  2. Concurrency support. Software transaction memory and Java threads. Covers [5].
  3. Incanter: a statistical computing package modeled after R, written in Clojure. Under the hood it uses the high-performance, multithreaded scientific computing package Parallel Colt. Covers [1] and [7].
  4. It's a Lisp, with all the metaprogramming and expressiveness that it entails. Covers [2].

Disadvantages:

  1. Relatively new to the scene. The community is small, albeit very active and helpful. It may or may not survive the test of time.
  2. It's a Lisp. If you don't like Lisp, then you won't like Clojure, although obviously I'm personally biased and would prefer you gave it a try.
  3. Will probably never match Java in pure speed, pound for pound. It generally comes close, within an order of magnitude.
  4. It is not a pure functional language. Read: side effects and mutable data structures. This may or may not be a disadvantage to you, depending on what you're looking for out of the langauge.
link|flag
vote up 13 vote down

I like a lot OCaml because it has some very nice killer features that I love:

  • Very fast compiled code
  • Strong typing that is not a pain in the arse through type inference
  • Multi Paradigm (OO, Imperative, Functional)

The worst thing about it is that it's not getting a parallel garbage collector any time soon, so its great performance will be lagging behind other languages implementations that are easier to parallelise automatically as the number of cores increases. It's still possible to do parallel programming explicitly with MPI (but I think that kills the fun).

If you can afford to spend some money, maybe this book could help you: OCaml for Scientists.

Anyway, I'd stick with Python/SciPy, it's got great performance and a flexibility hard to find in any other language.

link|flag
1  
The OC4MC project provided OCaml with a parallel GC a few months ago but my initial tests indicated that it was not performant enough to be useful, although it may be now. My HLVM project is probably the best bet for high-performance parallelism from OCaml and it is nearing a first useful version... – Jon Harrop Dec 12 at 6:11
very nice to know about those options :) – fortran Dec 12 at 8:14
vote up 4 vote down

Clojure and Scala will have the best library support, as they can call into libraries written in any JVM-supported language.

Haskell and OCaml are both mature, well-tested languages. They can interface with existing code written in C, FORTRAN, etc through their FFIs.

Erlang is mature, but while it's often used in fault-tolerant distributed systems, I've never heard it praised on merits of performance. Maybe I just missed the memo? Would probably match any other language if the computations are parallelizable.

Scheme's a great language, but it doesn't have many libraries, and it's not very fast in my experience.

link|flag
1  
That really depends on your implementation. Chicken and Gambit scheme are pretty darn speedy (they compile down to C), and have a decent set of libraries. PLT schemes library base is massive. – Jonathan Arkell Aug 31 at 2:46
Erlang's parallel performance is awful. – Jon Harrop Sep 7 at 21:19
@Jonathan: Seconded -- but I would add something: Chicken has lots of extensions and libraries, and supports more SRFIs than Gambit. – Jay Nov 7 at 12:46
vote up 1 vote down

Could always go one up from Clojure and learn Common Lisp (or Scheme for that matter).

...if not Lisp, then I'd probably settle for Haskell (and then Erlang).

link|flag
Hardly "one up" given the absence of a decent garbage collector in all existing Common Lisp implementations, both free and commercial. – Jon Harrop Sep 7 at 21:18
vote up 0 vote down

Any of these would do, I think (though I don't have a scientific background, so YMMV). Of these my favorites are, in order:

1: Haskell 2: Erlang 3: OCaml / F# (pulled a fast one on this one). 4: Scala

link|flag
vote up 7 vote down

There probably isn't a definitive answer here, but you certainly aren't the first to ask.

http://lambda-the-ultimate.org/node/2720

http://www.programming4scientists.com/2008/08/a-big-list-of-programming-languages/

I have grown fond of F# which is based on OCaml, but I would think most any functional language would get you to the goal.

link|flag
2  
F# is on .net which is something i would like to avoid for life.... and I am on Linux for the most part. – leon Aug 28 at 19:57
Btw is ocaml good for concurrency/Parallelism? – leon Aug 28 at 20:08
2  
@leon: From what I've heard, F# works fine on Mono as well. – Tom Lokhorst Aug 28 at 21:05
2  
ocaml is reputed to have trouble with concurrency. Writing a concurrent garbage collector is more work than the ocaml core team wants to bother with. However, F# is based on it and doesn't have the same problems. – mwt Aug 29 at 0:34
@mwt: Wrong way around. OCaml has trouble with parallelism but concurrency works great and some of OCaml's largest commercial success stories (e.g. Wink) are concurrent. Writing a concurrent GC that is performant on OCaml-like code seems to be impossible but it is actually really easy to write a (mostly) concurrent GC, e.g. VCGC. – Jon Harrop Dec 12 at 6:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.