Re: What language for mathematical applications?




plasticsunrise@xxxxxxxxx wrote:
I plan to build some Windows based GUI applications for educational
mathematics (K12) and also for more advanced math (think numerical
packages like matlab or cas like mathematica).

I'm not sure what's the best programming language/framework to handle
this. I was thinking about C# and .NET, do you have a better advice?


Haskell. No seriously, stop laughing :-)

GHC can be used/built with wxwidgets so you get you
gui and you also get a proper "math" language.

sample program to calculate factorial
fact 1 = 1
fact n | n > 1 = n * fact n - 1

return a list of all factorials from a given number
downwards using the above function?

allfact 1 = [1]
allfact n | n > 1 = [fact n] ++ allfact n - 1


goose,

.



Relevant Pages

  • Re: What language for mathematical applications?
    ... mathematics and also for more advanced math (think numerical ... packages like matlab or cas like mathematica). ... I'm not sure what's the best programming language/framework to handle ... Wat's Haskell ???????? ...
    (comp.programming)
  • Re: Book reference needed for self study
    ... Which bookwill this ng recommend for self study in mathematics. ... which gives me a solid foundation and insight in mathematics, ... insight into the "flavor" of advanced math (along with the important ...
    (sci.math)
  • Re: What language for mathematical applications?
    ... mathematics and also for more advanced math (think numerical ... packages like matlab or cas like mathematica). ... I'm not sure what's the best programming language/framework to handle ... the kinds of math that you're shooting for. ...
    (comp.programming)
  • Re: What language for mathematical applications?
    ... mathematics and also for more advanced math (think numerical ... packages like matlab or cas like mathematica). ... I'm not sure what's the best programming language/framework to handle ...
    (comp.programming)