vote up 1 vote down star
1

As an engineer and a "real" programmer, I often find that I despise MATLAB because none of the standard programming concepts that work in just about every other language are easy to express in it. The syntax is quirky, the OO system is bolted-on as an afterthought, it discourages functional decomposition by only allowing one function per file and having its weird import system that you have to deal with every time you want to factor out a function, and it makes standard data structures virtually impossible to implement because it doesn't have pointers or any obvious equivalent.

Honestly, is the problem MATLAB or me? Is MATLAB an arcane and defective programming language that is used only because nothing else can handle its small niche well, or do I have the wrong mindset? In other words, is there some reason why you're not supposed to think of MATLAB as "normal" programming?

2  
I'd take Mathematica over Matlab any time. – Joren Sep 17 at 18:38
1  
As I see it, Mathematica and Matlab are really for orthogonal purposes (symbolics vs. numerics). Both have encroached on the other's turf at times, but neither performs the other's niche at all well. – dsimcha Sep 17 at 18:44
1  
Your notions of "real" programmers and "normal" programming seem very subjective and condescending. MATLAB is a high-level language. It handles things its users may not otherwise need/want to mess with, like memory allocation/deallocation and pointers. It has its pros, cons, and niches, just like all languages. This doesn't make it any less "normal", or its programmers any less "real". It sounds like you're just frustrated because you haven't yet gained enough familiarity with it. – gnovice Sep 17 at 19:44

locked by Marc Gravell Sep 17 at 20:34

14 Answers

vote up 3 vote down check

You should view MATLAB almost like a super-advanced programmable calculator. If you're trying to use "standard programming concepts", you're doing it wrong. MATLAB is most useful for data processing and computation. It is specially designed to do this task easily and well. People with little mathematical background will find MATLAB useless. It is not for programmers, because other languages handle more general programming problems.

MATLAB is for engineers. Do you want to find the frequency spectrum of a 10000 sample signal, draw a Bode Plot, and find the half-power bandwidth? Takes about 60 seconds. Probably less. How about the matrix exponential of a matrix with symbolic entries? Try doing that in Python. Designing an adaptive filter? Or optimizing a function of 20 variables? How about comparing various image filters? Modeling dynamical systems? All of these things are extremely easy in MATLAB and very difficult in "traditional" languages.

So, it's you, Mr. "real programmer". I'm an electrical engineer and I work with C++ and MATLAB pretty much every day. It's pretty obvious to me when to use each one, so I suggest you keep an open mind.

link|flag
I agree with you almost an all points, but do not underestimate python. Try this: "Python for Controls, System Dynamics and Mechatronics" siue.edu/~rkrauss/python_intro.html – Mikhail Nov 15 at 11:54
vote up 1 vote down

It's all about perspective - matlab does a great job for some, not for others. I live and breathe matlab. I do everything in matlab except product development : scripting, data analysis, visualization, simulation and prototyping. I work many, many times faster in matlab than anything else, always gets the job done well, and spend hardly no time debugging. When I need better memory handling, I interface to c++ functions.

But if I were to start over, I would give python a shot..

link|flag
vote up 0 vote down

See: http://stackoverflow.com/questions/179904/what-is-matlab-good-for-why-is-it-so-used-by-universities-when-is-it-better-tha

If you replace your "real" and "normal programming" with "general-purpose programming language" then your question answers itself: MATLAB is not.

I share your opinion that Matlab feels "different" compared to such general-purpose languages like Java/C#.

IMO there are three reasons for it:

  1. it was invented in the 70'
  2. it was invented as DSL (Domain-Specific-Language), in the beginning it had no functions and many other stuff like cells, ecc.
  3. MATLAB targets mostly science students and engineers. Such groups usually do not have strong background in general-purpose programming languages (example).

They use MATLAB because it is:

  1. interactive
  2. easy input -> easy output
  3. operations on a whole vector or matrix at once
  4. ... and because universities get MATLAB cheap

About its niche: I observe a trend in industry of increasing Python use. I am not sure it is because some programmers dislike Matlab syntax like you do or because of MATLAB cost.

The other niche - SIMULINK (which is part of MATLAB package), has some but no real alternatives (Modelica, Labview, ASCET/ETAS).

link|flag
vote up 3 vote down

Just a thought, but you do not need to factor out your functions as you mentioned, you can have them all in the same file, or not, depending on your needs. See: Methods definition.

Regarding data structures, they can be implemented using handle class derived classes. This makes it possible to implement linked lists, graphs, trees or whichever data structure you need. Obviously, you will not get the same performance as you would get for instance in C++, but the purpose of MATLAB is mathematical computing, not core applications development. Regarding OO implementations of data structures, see this link.

Again, MATLAB has its strength and weaknesses, but I must say it is really good at what it is specialized in: numerical computing.

link|flag
vote up 2 vote down

I spend much of my working life split between programming MATLAB, R and C#.

Of the two mathematical programming languages (MATLAB and R), R has by far the nicer syntax in most situations.

Anything involving manipulating strings is a pain in the *rse in MATLAB.

There are many basic concepts missing from it:

  1. no troolean logic

  2. no missing (NA) values

  3. no trellis/ lattice graphics

  4. no enums

Having said all this, there are several good reasons that we still use MATLAB.

  1. The dev environment is slick, and a pleasure to use. (This is something R lacks.)

  2. You can write mathematical models very quickly with it.

  3. It has great .NET integration. (Again, this is something R lacks.)

Edit: Some more gripes I just remembered.

  1. round doesn't accept an argument for rounding to an abritrary number of decimal places. Sure you can use round2 on the file exchange, but this is something so basic it should be built in.

  2. Similarly, there is no function for rounding to n significant figures.

  3. char won't convert logicals. How hard is it get it to return a cell array of 'true' and 'false'?

  4. The Help Browser has just been overhauled, but it still doesn't have tabbed browsing. Even IE has had this for three years.

(Sorry for sounding miserable; I'm in a grumpy mood.)

link|flag
1  
A few minor points: 1) NaN can usually be used as a "missing" value, since any operations involving it simply result in NaN. 2) There are a number of ways to roll your own enums, using either structures, the MATLAB OO system, or importing Java: stackoverflow.com/questions/1389042/…. – gnovice Sep 18 at 14:14
1  
@gnovice 1) I agree that NaN can be used as a substitute for missing values, but semantically it is a different thing from an NA. 2)Yeah, but it would nice if they were built-in to the language. – Richie Cotton Sep 18 at 14:50
@Richie: Agreed on both points. I was just giving some possible solutions for overcoming those limitations. – gnovice Sep 18 at 14:52
vote up 4 vote down

Firstly, MATLAB isn't defective, it's just different. And it is possible to write highly effective and elegant code in MATLAB. The best thing about MATLAB is if you can bend your mindset into vectorizing your problem, then you achieve incredible gains. If you can't vectorize, write a short C++ program and mex it. If that's not enough, throw some Java into your MATLAB script (yeah, right into it)!

MATLAB is an excellent prototyping tool and with a little practice, you can get good, maybe great performance out of it. You've just got to know how. Isn't that the case with most languages? But the great thing is, it's not that hard in MATLAB: just a different method of thought is required.

link|flag
vote up 0 vote down

I'm rather fond of MATLAB - I use it to "get-things-done" - analysing data from experiments and coding up physical models - for which it works very well. I can write prettier things in C#, from a GUI and structural elegance point of view but it would take much longer to do my core work in C# so I use it for fun.

link|flag
vote up 12 vote down

It's you, Mr. "I'm an engineer and a real programmer"

Hey, it's all relative. MATLAB (and all of its clones) is excellent for what it is designed for -- a specialized interactive program that optimizes matrix calculations. It is excellent for quickly prototyping large (but not too large) matrices calculations interactively and is widely used in statistics, science, engineering and finance research.

It is typically not used for production application, nor is it really designed for it (although it does have nice graphics and some GUI capacity).

Sure, there are so-called real programs that specialize in Matrix manipulation (e.g., APL and all of its derivatives), but MATLAB can prototype various algorithms and get your answer(s) quickly and if you need to code it into a production language, you can recode into something more applicable. That doesn't mean it is not a "real" language.

By the way, a pet peeve of mine is people who call themselves "real" programmers implying that they are somehow above people who don't rise up they their own level of self importance. As far as I am concerned, anyone who can get answers and, more importantly, can get someone to pay (particularly if it is good pay ) for them is, is a "real" programmer in every sense of the word.

Cheers.

link|flag
11  
@SilentGhost: Seeing as how Doug is a MathWorks employee, I think he knows best how to correctly spell the name of his company and his product. Users routinely correct spelling mistakes on SO (which is one of the reasons there's such a thing as edit privileges), so I don't understand your problem with it. – gnovice Sep 17 at 20:46
5  
Then I guess I'll just call you "sylintgost". Why should you care? – gnovice Sep 17 at 20:57
8  
Proper capitalization (and spelling), when defined for something should be used. I never refer to (the document markup language) latex, but always LaTeX. This is not the difference between colour and color. – MatlabDoug Sep 17 at 21:00
13  
The product is MATLAB. On what planet do MathWorks not get authority over the name of their product? Deliberately making the spelling incorrect is inappropriate. – Marc Gravell Sep 18 at 6:08
6  
People are free to spell anyway they want? Well hell, we should just do away with this whole edit feature and allow everyone to spell anything whatever way they want. I can't wait until I start looking for answers here and they all start looking like AOL-speak – TheTXI Sep 18 at 20:31
show 5 more comments
vote up 1 vote down

To not answer your un-question, I would say MATLAB is clear reason why large corporations shouldn't be allowed to design programming languages (Java is the other clear example).

MATLAB has a number of legacy features and syntax which are unpleasant and annoying, but which will never die because The Mathworks will not sacrifice backwards compatibility. That said, the MATLAB profiler is a very useful tool, one which I have not seen replicated with any quality in any other language, free or 'unfree'. I've found MATLAB suitable for rapid prototyping and deploying rapidly prototyped algorithms.

link|flag
Matlab is pretty much the best language for signal processing and applied mathematics. It's just very focused. – rlbond Sep 22 at 5:28
vote up 19 vote down

MATLAB is what it is as a result of the demands of its user base. Mathworks has traditionally been very active in keeping track of how it is being used and when they've seen a need, they have responded with a feature.

The OO system is completely busted. I agree with that 100%.

I've used MATLAB primarily in research psychology, and this is what I've found.

  1. Most MATLAB programs are small (<5k lines, often <1k, including functions), single-purpose scripts. For programs this size, the overhead of a good complexity-management system is more trouble than it's worth.
  2. MATLAB is built to reduce the mental barrier to entry for people who are not programmers at heart. Psychologists don't want to program, they want to do psychology. As a result, complexity is often pushed out of sight. This is a legitimate trade off.
  3. You can use pointers in MATLAB, you just have to build them yourself (a pointer is just an index). If you do it right it's very little extra code. I don't know, but I suspect pointers/references were omitted for two reasons. The first reason is that most non-programmers would do more harm than good with them (see #2). Second, references would get tangled in MATLAB's copy-on-write model of assignment (which is entirely under the hood).
  4. Yes, the syntax is quirky. This is the product of years worth of strata of evolving feature sets combined with strong backwards compatibility. A non-quirky syntax would require a clean break.
  5. You can have multiple functions per file, but only one publicly addressable one. As a side note, combined with function references you can build your own JavaScript style OO system.

So, MATLAB isn't busted, it fills its niche very well, but learning to use it means meeting it halfway. With the right mindset, you can do anything you need to in MATLAB, as long as you don't need to do too much at any given time.

link|flag
1  
By "completely busted", are you referring to the old OO system or the new one? – fmarc Sep 17 at 19:44
1  
There's a pretty good example of the JavaScript style OO system in gnovice's response here: stackoverflow.com/questions/1413860/… – Kennet Belenky Sep 17 at 20:47
@Kennet: Thanks, but that was kind of a klooge. ;) It was a way to mimic OO behavior without the actual OO utilities of MATLAB. You can check these two SO answers to get a taste of the newest OO system in MATLAB: stackoverflow.com/questions/1389042/… and stackoverflow.com/questions/1272283/… – gnovice Sep 17 at 20:53
vote up 0 vote down

When I tried out MATLAB the first time, I couldn't make heads or tails of it, and gave up pretty quickly after that. I got experienced with Maple (which is quite good, by the way) through courses in school. Its programming language is pretty good, but still I think it's asking too much for this type of software to give you a fully-blown programming language. It wasn't designed with that in mind. That being said, you can still create some pretty powerful stuff, even if you don't get all the goodness of a pure OO programming language.

IMO, if you need to use serious programming tools, use serious programming tools. Most advanced systems like MATLAB and Maple are capable of calling external DLLs, so if it's feasible for your project, take advantage of that.

link|flag
vote up 4 vote down

I've been burned many times by all the odd things it does differently from other languages. I've often felt that MATLAB is the clearest example of why Mathematicians shouldn't be allowed to design programming languages.

But in all seriousness, it's very good at what it does. And that's manipulation of matrices. Another plus is the ability to do things in real time via the shell. This is quite nice for exploratory applications like image processing and computer vision, as opposed to having to recompile your program every time you want to test something out or try a different function.

It's full of warts, but I'll take it.

link|flag
vote up 1 vote down

MATLAB is different, to answer the title question. It centers around some ideas in Mathematics and thus isn't quite as general purpose as other languages to my mind.

I can remember pretty well that MATLAB was this one section of my CS curriculum where we got into Numerical Analysis and really doing a lot of various calculations and understanding how some things get done like interpolation and least squares.

Maple is a kind of complement to MATLAB in some ways. Symbolic computation was a fun class for me as I got to go through stuff I did in first year algebra in a real-world way that wasn't quite as obvious when I took it the first time.

link|flag
vote up 8 vote down

MATLAB is for rapid simulating, developing, prototyping, and testing engineering related systems.

It's not a generic platform or language, but is capable of acting as one.

I think it's suitable for what it's made for.

link|flag

Your Answer

Get an OpenID
or

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