Can you use R to replace MATLAB?

http://stackoverflow.com/questions

11k: Matlab can eat up my software budget. R has not managed to do this, yet. 

To correct some other statements: it is not correct that one can reuse all Matlab code in Octave or FreeMat. There are some classes of functions that are not well implemented at all in the other versions. I have large blocks of code that I have found it better to implement anew in environments that have approximately similar functionality for just these classes of functions. Of the functionality that Matlab has that Octave does not, I have found surrogates in R, Python, and, to some extent, Java and C. Reimplementing libraries is harder than basic code. Pay attention to libraries... 

42k: Technically, anything that can be done in one language can be done in any language (from a "what can it compute" point of view). It's just a matter of ease-of-use and ease-of-learning 

6.5k What are your performance requirements (disk, memory, network, filesizes)? Are you touching a database? Are you operating totally offline or ar there any response-time or rate requirements? Do you care about scalability? Crash recovery? etc etc 

2K R has a large package repository called CRAN that provides a wealth of additional features (though I agree with your general point). Ex: a PDE solver:

85K: MATLAB also has something analogous to CRAN: a sizable File Exchange (mathworks.com/matlabcentral/fileexchange) with over 10,000 user-submitted functions and toolboxes that are freely available.

32K 

R is an environment for statistical data analysis and graphics. MATLAB's origins are in numerical computation. The basic language implementations have many features in common if you use them for for data manipulation (e.g., matrix/vector operations).

R has statistical functionality hard to find elsewhere (>2000 Packages on CRAN), and lots of statisticians use it. On the other hand, MATLAB has lots of (expensive) toolboxes for engineering applications like

8k:

I have used both R and MATLAB to solve problems and construct models related to Environmental Engineering and there is a lot of overlap between the two systems. In my opinion, the advantages of MATLAB lie in specialized domain-specific applications. Some examples are:

In my opinion MATLAB provides far better interactive graphics capabilities. However, I think R produces better static print-quality graphics, depending on the application. MATLAB's symbolic math toolbox is also better integrated and more capable than R equivalents such as Ryacas or rSymPy. The existence of the MATLAB compiler also allows systems based on MATLAB code to be deployed independently of the MATLAB environment-- although it's availability will depend on how much money you have to throw around.

Another thing I should note is that the MATLAB debugger is one of the best I have worked with.

The principle advantage I see with R is the openness of the system and the ease with which it can be extended. This has resulted in an incredible diversity of packages on CRAN. I know Mathworks also maintains a repository of user-contributed toolboxes and I can't make a fair comparison as I have not used it that much.

The openness of R also extends to linking in compiled code. A while back I had a model written in Fortran and I was trying to decide between using R or MATLAB as a front-end to help prepare input and process results. I spent an hour reading about the MEX interface to compiled code. When I found that I would have to write and maintain a separate Fortran routine that did some intricate pointer juggling in order to manage the interface, I shelved MATLAB.

The R interface consists of calling .Fortran( [subroutine name], [argument list]) and is simply quicker and cleaner.

I should also mention that R gets a big plus in my book for the Sweave system for enabling reproducible research. Allowing anyone to re-run and analyze the computations behind a paper or report using a freely available tool is extremely important in my opinion. 

8K

In my experience moving from MATLAB to Python is an easier transition - Python with numpy/scipy is closer to MATLAB in terms of style and features than R. There are also open source direct MATLAB clones Octave and Scilab.

There is certainly much that MATLAB can do that R can't - in my area MATLAB is used a lot for real time data aquisition - most hardware companies include MATLAB interfaces. While this may be possible with R I imagine it would be a lot more involved. Also Simulink provides a whole area of functionality which I think is missing from R. I'm sure there is more but I'm not so familiar with R.

Can you use R to replace MATLAB?

25k 

Short answer: no, of course not. While any set of mathematical software packages will have their overlaps, they will always have biases towards certain problem domains. These biases figure strongly in whether or not you want to use one of these packages.

An example of what MATLAB can do that R cannot is interface to real-time hardware for signal processing/acquisition and control. A Simulink model in MATLAB can be configured both to run in simulation on your machine before compiling the code to execute on a real system taking measured data as input and calculating appropriate outputs (what was before a simulation of a control system is now a fully functioning one). With the appropriate hardware board in your machine, you can run real-time control systems through a PC.

R, by contrast, seems firmly set in the role of statistics, where I'm sure it out-performs what MATLAB can do. Similarly, Mathematica is better than MATLAB at symbolic maths; Python is better than MATLAB at general programming; gnuplot is better than all of them at actually creating graphs (er, I assume); and so on.

20K:R is actually known to be very good for creating graphs. They look very good too. Actually, the very first reason for me to look into R was I was jealous of some of the nice graphs that my colleagues had made, using R. So I switched from gnuplot and have never looked back. 

4K:Since the answer is specific to the diffset of MATLAB and R capabilities, I will mention a very important one: MATLAB includes a JVM and has flawless and robust interoperability with Java. All of Java's vast universe of libraries is accessible to the MATLAB user. The MATLAB IDE can be almost be used as a poor man's Eclipse. In comparison, rJava is very immature, despite the very valuable effort of its creator (Roman Francois).

489: Support for interactive graphics is much better in matlab than in R. I hate matlab as a language, but I get jealous when I see how its users can explore data with mouse operations, while I'm busy repeating commands with new values for xlim etc. Matlab also handles multi-panel plots much better than any of the R methods for the task. Generally, R graphics has a 1960s feel. It's fine for publication, but not the best solution for interactive exploration of data.

55k: Yes.

I used MATLAB for years but switched primarily to R in the last 3 years. At this point, they have much more in common than not. It partially depends on your field and use-case. And as Spencer Graves said previously, it also depends on which "church you happen to frequent". It's best if you look at theMATLAB toolkit vs. CRAN for a specific task before you decide.

A similar question asked on R-Help a few years ago and again more recently. David Hiebeler (at the University of Maine) maintains an extensive R/MATLAB comparison, and is the best reference on the subject. You can also review this comparison of basic functions.

Here are some of the things that I've observed in the past, none of which should be deal-breakers.

So, if ease-of-use isn't a primary concern (and there's no other business reason to avoid using an open-source tool), then I think that there's a real case to be made for using R. It has a very strong community around it (the R mailing lists are amazing), is rapidly developing (see CRAN), and it's free(which isn't a small issue!).

Edit: I would just add one further point to this: the book "Functional Data Analysis with R and MATLAB" includes a chapter on the "Essential Comparisons of the Matlab and R Languages". This covers some important syntax differences (such as the interpretation of a dot, or the meaning of square brackets []). The book itself is well worth reading for anyone interested in functional programming (in either language).

59: With the sqldf package, R is capable of not only statistics, but serious data mining as well - assuming there is enough RAM on your machine.

And with the RServe package R becomes a regular TCP/IP server; so you can call R out of java (or any other language if you have the api). There is also a package in R to call java out or R.

24K: There's a nice matlab/R reference that shows how to perform equivalent tasks in each here:math.umaine.edu/~hiebeler/comp/matlabR.html 

51K: "[MATLAB] also arguably has more products and support". I disagree with this. CRAN and Bioconductor (for R) are much more comprehensive than MATLAB + the toolboxes + the File Exchange. Also, the R-Help mailing list is usually as effective as paid support, in my experience. I agree that the MATLAB compiler is a great feature that isn't replicated in R.

"R graphics has a 1960s feel" - that may have been true years ago. These days, with ggplot2 which is rapidly gaining popularity, R charts have a modern and beautiful look. See for example: r-bloggers.com/?s=ggplot 

5K: A lot of times R functions are better documented than those in Matlab. I find that the quality of Matlab documentation varies a lot from function to function and between (commercial) toolboxes. I agree that Matlab IDE is somewhat more beginner friendly, but it is not better than e.g. ESS for R if you use it on a daily bases.

1K RStudio is a nice new R IDE