Tagged Questions
MATLAB is a high-level language and interactive programming environment developed by MathWorks. It is the foundation for a number of other tools, including Simulink and various toolboxes that extend the core capabilities.
63
votes
11answers
15k views
What can MATLAB do that R cannot do?
I often hear people complain how expensive MATLAB licenses are. Then I wonder why they don't just use Octave or R. But is the latter right? Can you use R to replace MATLAB?
41
votes
17answers
3k views
Psychology researcher wants to learn new language [closed]
I'm currently considering R, MATLAB, or Python, but I'm open to other options. Could you help me pick the best language for my needs? Here are the criteria I have in mind (not in order):
Simple to ...
40
votes
31answers
7k views
What is your favourite MATLAB/Octave programming trick? [closed]
I think everyone would agree that the MATLAB language is not pretty, or particularly consistent. But nevermind! We still have to use it to get things done.
What are your favourite tricks for making ...
31
votes
22answers
13k views
What is MATLAB good for? Why is it so used by universities? When is it better than Python?
I've been recently asked to learn some MATLAB basics for a class.
What does make it so cool for researchers and people that works in university?
I saw it's cool to work with matrices and plotting ...
30
votes
8answers
2k views
Why is MATLAB so fast in matrix multiplication?
I am making some benchmarks with CUDA, C++, C#, and Java, and using MATLAB for verification and matrix generation. But when I multiply with MATLAB, 2048x2048 and even bigger matrices are almost ...
30
votes
7answers
7k views
How to elegantly ignore some return values of a MATLAB function?
I was wondering if it was possible to get the nth return value from a function without having to create dummy variables for all n-1 return values before it.
Let's say I have the following function in ...
29
votes
2answers
1k views
How can I index a MATLAB array returned by a function without first assigning it to a local variable?
For example, if I want to read the middle value from magic(5), I can do so like this:
M = magic(5);
value = M(3,3);
to get value == 13. I'd like to be able to do something like one of these:
value ...
25
votes
7answers
16k views
Is there a foreach in MATLAB? If so, how does it behave if the underlying data changes?
Is there a foreach structure in MATLAB? If so, what happens if the underlying data changes (i.e. if objects are added to the set)?
24
votes
17answers
2k views
Good practices in writing code?
I am an engineering student, not computer science though, and have been coding in Matlab for like 4 years. However only recently I have experienced writing long codes, or the need for connection of ...
24
votes
2answers
4k views
MATLAB OOP: is it slow or am I doing something wrong?
[please also read the edit below]
I'm experimenting with MATLAB OOP, as a start I mimicked my C++'s Logger classes and I'm putting all my string helper functions in a String class, thinking it would ...
22
votes
1answer
346 views
R package for motion capture data analysis and visualisation
I am a newbie in R, love it, but I am surprised by a complete lack of solid package to analyse motion capture data.
The simplest motion capture file is just a massive table with 'XYZ' coordinates ...
22
votes
1answer
462 views
Embedding Python in MATLAB
I am trying to embed Python 2.6 into MATLAB (7.12). I wanted to embed with a mex file written in C. This worked fine for small simple examples using scalars. However, if Numpy (1.6.1) is imported ...
22
votes
6answers
2k views
How to generate a guitar note
Back in a freshman or software programming class we had to write a program that would simulate the sound of a guitar pluck.
I can make pure sin waves all day, but I am trying to remember how to do a ...
20
votes
5answers
1k views
How to plot a gene graph for a DNA sequence say ATGCCGCTGCGC?
I need to generate a random walk based on the DNA sequence of a virus, given its base pair sequence of 2k base pairs. The sequence looks like "ATGCGTCGTAACGT". The path should turn right for an A, ...
20
votes
4answers
11k views
How to use SIFT algorithm to compute how similiar two images are?
I have used the SIFT implementation of Andrea Vedaldi, to calculate the sift descriptors of two similar images (the second image is actually a zoomed in picture of the same object from a different ...
19
votes
5answers
11k views
Map function in MATLAB?
I'm a little surprised that MATLAB doesn't have a Map function, so I hacked one together myself since it's something I can't live without. Is there a better version out there? Is there a ...
19
votes
11answers
15k views
Default Arguments in Matlab
Is it possible to have default arguments in Matlab? For instance, here:
function wave(a,b,n,k,T,f,flag,fTrue=inline('0'))
I would like to have the true solution be an optional argument to the wave ...
19
votes
11answers
5k views
Random points inside a Polygon
I have a 4 side convex Polygon defined by 4 points in 2D, and I want to be able to generate random points inside it.
If it really simplifies the problem, I can limit the polygon to a parallelogram, ...
19
votes
1answer
3k views
How can I generate a list of function dependencies in MATLAB?
In order to distribute a function I've written that depends on other functions I've written that have their own dependencies and so on without distributing every m-file I have ever written, I need to ...
18
votes
5answers
1k views
MATLAB tutorial for programmers
I'm getting some new students soon, who will be writing MATLAB code. They're new to MATLAB, but they have experience coding in Java and C++.
I'm going to have them go through the Getting Started ...
18
votes
7answers
2k views
How to organize MATLAB code?
How do you organize your Matlab code? I've come into ownership of several thousand lines of Matlab code, some as >900 line functions and a few directories full of function_name.m files. It's hard to ...
17
votes
2answers
340 views
Recognizing distortions in a regular grid
To give you some background as to what I'm doing: I'm trying to quantitatively record variations in flow of a compressible fluid via image analysis. One way to do this is to exploit the fact that the ...
17
votes
3answers
547 views
Why does Gnu Octave have negative zeroes?
This is an odd one I'm puzzled about. I recently noticed at the Gnu Octave prompt, it's possible to enter in negative zeroes, like so:
octave:2> abomination = -0
And it remembers it, too:
...
17
votes
7answers
10k views
What alternatives are there to the MATLAB Editor?
Some things that I personally find as shortcomings in the MATLAB Editor:
virtually no code completion available
does not run OS native (on MacOS) - but in X-Environment (shortcuts, copy&paste ...
16
votes
3answers
639 views
Is it worth forcing myself to learn vim/emacs? [closed]
I do a lot of statistical programming in R, SAS, and Matlab (~2-3 hours a day), and alternate between Ubuntu, OS X (I have to use X11 to get SAS working for this--man, is that slow), and Windows, ...
16
votes
1answer
163 views
Add custom plots to plot catalog in MATLAB
I've just noticed the plot catalog in R2011a. Does anyone know how to add my own plot functions to it?
http://blogs.mathworks.com/desktop/2011/04/18/redesigned-plot-catalog-in-matlab-r2011a/
BTW, ...
16
votes
3answers
3k views
Is it possible to define more than one function per file in MATLAB?
When I was studying for my undergraduate degree in EE, MATLAB required each function to be defined in its own file, even if it was a one-liner.
I'm studying for a graduate degree now, and I have to ...
16
votes
4answers
1k views
Matrix “Zigzag” Reordering
I have an NxM matrix in MATLAB that I would like to reorder in similar fashion to the way JPEG reorders its subblock pixels:
(image from Wikipedia)
I would like the algorithm to be generic such ...
15
votes
2answers
662 views
MATLAB programming best practices
I'm looking for resources on how to structure medium- to large-scale MATLAB projects, especially ones that involve several independent modules. How do I manage global configuration variables, how do I ...
15
votes
8answers
803 views
Looking for an elegant and efficient C++ matrix library
Greetings,
googling for that subject brings, e.g., MTL, exmat, LAPACK and also here. I also seem to remember that Microsoft Research released one, but can't put my hands on it.
I look for advice from ...
15
votes
6answers
1k views
Curve fitting unsorted points on a plane
Question: How do you fit a curve to points on a plane if they aren't single valued?
For the example shown, how would one fit a curve (like the black one) to the noisy blue data? It's similar to ...
15
votes
4answers
25k views
MATLAB: get variable type
Does MATLAB have a function/operator that indicates the type of a variable (similar to the typeof operator in JavaScript)?
14
votes
2answers
460 views
Variables not showing in Matlab workspace
Every now and then, variables just stop showing up in the Workspace pane. who and whos show that there are definitely variables in the workspace--I just can't see them in the Worskpace pane. Only ...
14
votes
1answer
467 views
How can I access a matlab/octave module from python?
I am looking for a way to access a matlab module from python. My current situation is this:
I have a python code that does numerical computations by calling Lapack routines while the memory is ...
14
votes
5answers
3k views
Hash tables in MATLAB
Does MATLAB have any support for hash tables?
Some background
I am working on a problem in Matlab that requires a scale-space representation of an image. To do this I create a 2-D Gaussian filter ...
14
votes
9answers
1k views
How to deal with name/value pairs of function arguments in MATLAB
I have a function that takes optional arguments as name/value pairs.
function example(varargin)
% Lots of set up stuff
vargs = varargin;
nargs = length(vargs);
names = vargs(1:2:nargs);
values = ...
14
votes
4answers
2k views
What is the closest thing MATLAB has to namespaces?
We have a lot of MATLAB code in my lab. The problem is there's really no way to organize it. Since all the functions have to be in the same folder to be called (or you have to add a bunch of folders ...
14
votes
5answers
9k views
How would one check for installed MATLAB toolboxes in a script/function?
How would one check for installed MATLAB toolboxes in a script/function? (checking toolbox versions would also be good!) This could provide a quick and useful error message when someone attempts to ...
14
votes
3answers
1k views
Corner Cases, Unexpected and Unusual MATLAB
Over the years, reading others code, I encountered and collected some examples of MATLAB syntax which can be at first unusual and counterintuitive. Please, feel free to comment or complement this ...
14
votes
4answers
2k views
How do I choose computer hardware which best optimizes the performance of MATLAB?
For example:
I would like to know what the minimum specification are for RAM
I would like to know which processor is best
I would like to know what system is best, UNIX, Windows?
14
votes
8answers
5k views
Interoperating between Matlab and C#
After peeking around the internet it looks like it is possible to interop between C# and Matlab. I am wondering if anyone has had success with it and what they did to do so. If possible somehow ...
13
votes
3answers
157 views
Difference between [] and [1x0] in MATLAB
I have a loop in MATLAB that fills a cell array in my workspace (2011b, Windows 7, 64 bit) with the following entries:
my_array =
[1x219 uint16]
[ 138]
[1x0 uint16]
[1x2 ...
13
votes
2answers
270 views
Precision, why do Matlab and Python numpy give so different outputs?
I know about basic data types and that float types (float,double) can not hold some numbers exactly.
In porting some code from Matlab to Python (Numpy) I however found some significant differences in ...
13
votes
2answers
399 views
Can I buy remote MATLAB processing time?
I'm a regular user of Matlab. For a very CPU-intensive task, I need to keep my PC running for hours (or days) simulating stuff, which is a pain since I need to carry it around.
Do you know of a ...
13
votes
1answer
216 views
Rollback compatibility version of libraries on Mac OS X
So, I love my Macbook, and she loves me. We have our ups and downs, but for the most part our relationship has been strong. Recently though we had a fight. it started out simply enough. I was ...
13
votes
2answers
448 views
Sharing large datasets between Matlab and R
I need a relatively efficient way to share data between Matlab and R.
I have checked SaveR and MATLAB R-link, but SaveR formats Matlab's binary data as text strings first and then prints them to an ...
13
votes
9answers
964 views
Why/when should I prefer MATLAB over Octave?
In our shoestring operation we need to prototype algorithms in some higher-level language before committing to a C implementation on embedded hardware.
So far we have been using MATLAB to do that, ...
13
votes
3answers
217 views
How to recognize overflow bugs in Matlab?
I spent part of yesterday and today tracking down a bug in some Matlab code. I had thought my problem was indexing (with many structures that I didn't define and am still getting used to), but it ...
13
votes
9answers
7k views
How do I create enumerated types in MATLAB?
Are there enumerated types in MATLAB? If not, what are the alternatives?
13
votes
7answers
11k views
What's the best MATLAB equivalent? (open source or otherwise free) [closed]
What is the best open-source (or otherwise free) MATLAB equivalent, in your opinion, and why?
Something with many built-in functions relevant to engineering and science, and a variety of good ...