1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<html> <head>
<title>Comparison of Matlab, R/S/Splus, Gauss, etc.</title>
</head>
<body>
<!--<body bgcolor="#FFFFFF"> -->
<h1>Comparison of Matlab, R/S/Splus, Gauss, etc.</h1>
<ul>
<li> <a href="http://www.scientificweb.com/ncrunch/">Comparison of
mathematical programs for data analysis</a>,
Stefan Steinhaus, tech report, 2000.
<br>
This is a very detailed comparison of features and speed of several
interactive scientific programming environments, e.g. Matlab,
Mathematica, Splus.
<!--
<p>
<li> <a href="Papers/gauss.econ.review.ps">Econometric
programming environments: Gauss, Ox and S-PLUS</a>,
Francisco Cribari-Neto.
J. of Applied Econometrics, 12(1):77-89, 1997
<br>
Ox can not be used interactively, and has a C-style syntax (it even
requires users to pre-declare variables!). Its only advantage is speed.
S-Plus has tons of features and good documentation, but is slow.
Gauss is somewhere in between.
<p>
<li> <a href="Papers/matlab.econ.review.ps">MATLAB as an econometric
programming environment</a>,
Francisco Cribari-Neto and Mark J. Jensen.
J. of Applied Econometrics, 12(6):735-432, 1997.
<br>
The basic conclusion is that Matlab has excellent graphics and
sparse-matrix facilities, but is slower than Gauss/Ox (especially on
code
with loops), and has few statistical routines built-in (one must buy the
stats toolbox).
<p>
<li> <a href="Papers/R.econ.review.ps">R: Yet another econometric
programming environment</a>,
Francisco Cribari-Neto and S. Zarkos.
J. of Applied Econometrics, 14(3):319-329, 1999.
<br>
The basic conclusion is that R is much faster than Splus on
code with loops, but a little bit slower on vectorized code. (Gauss/
Ox is much faster than both; in my experience, R and Matlab have about
the same speed.)
However, R has much better memory management than Splus, and R is free. Otherwise, R/S/Splus
are essentially the same.
-->
</ul>
|