MATLAB is a high-level language and interactive programming environment for numerical computation and visualization developed by MathWorks.

learn more… | top users | synonyms

15
votes
5answers
721 views

Using i and j as variables in Matlab

i and j are very popular variable names (see e.g., this question and this one). For example, in loops: for i=1:10, % do something... end As indices into matrix: mat( i, j ) = 4; Why ...
83
votes
9answers
10k 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 ...
51
votes
2answers
9k views

Is MATLAB OOP slow or am I doing something wrong?

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 be great to be able to do things ...
15
votes
4answers
18k views

Matrix of unknown length in MATLAB?

I'm trying to set up a zero matrix of variable length with two columns into which I can output the results of a while loop (with the intention of using it to store the step data from Euler's method ...
14
votes
6answers
9k views

How do I do multiple assignment in MATLAB?

Here's an example of what I'm looking for: >> foo = [88, 12]; >> [x, y] = foo; I'd expect something like this afterwards: >> x x = 88 >> y y = 12 But instead ...
25
votes
1answer
2k views

arrayfun can be significantly slower than an explicit loop in matlab. Why?

Consider the following simple speed test for arrayfun: T = 4000; N = 500; x = randn(T, N); Func1 = @(a) (3*a^2 + 2*a - 1); tic Soln1 = ones(T, N); for t = 1:T for n = 1:N Soln1(t, n) = ...
13
votes
4answers
11k views

How can I convert an RGB image to grayscale but keep one color?

So I am trying to create an effect similar to Sin City or other movies where they remove all colors except one from an image. I have an RGB image which I want to convert to grayscale but I want to ...
15
votes
3answers
9k views

MATLAB's Garbage Collector?

What is your mental model of it? How is it implemented? Which strengths and weaknesses does it have? MATLAB GC vs. Python GC? I sometimes see strange performance bottlenecks when using MATLAB nested ...
8
votes
7answers
4k views

Why is 24.0000 not equal to 24.0000 in MATLAB?

I've written a program in which it is necessary to delete some points from a matrix if they exist. sometimes, there are more than one copy of them in the matrix. But the problem is that when it comes ...
15
votes
5answers
23k views

Plotting 4 curves in a single plot, with 3 y-axes

I have 4 sets of values: y1, y2, y3, y4 and one set x. The y values are of different ranges, and I need to plot them as separate curves with separate sets of values on the y-axis. To put it simple, I ...
33
votes
5answers
16k 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 ...
60
votes
10answers
16k 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 ...
4
votes
7answers
27k views

How can I save an altered image in MATLAB?

I want to read an image into MATLAB, draw a rectangle on it, and then save the image. Also, I'm just learning MATLAB--please be gentle. It seems like it should be simple, but I can't seem to do it. ...
12
votes
2answers
2k views

Random numbers that add to 100: Matlab

[I'm splitting a population number into different matrices and want to test my code using random numbers for now.] Quick question guys and thanks for your help in advance - If I use; 100*rand(9,1) ...
7
votes
5answers
3k views

Element-wise array replication in Matlab

Let's say I have a one-dimensional array: a = [1, 2, 3]; Is there a built-in Matlab function that takes an array and an integer n and replicates each element of the array n times? For example ...
49
votes
22answers
40k views

What is MATLAB good for? Why is it so used by universities? When is it better than Python? [closed]

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 ...
32
votes
4answers
22k 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 ...
20
votes
3answers
2k views

How can I close files that are left open after an error?

I am using fid = fopen('fgfg.txt'); to open a file. Sometimes an error occurs before I manage to close the file. I can't do anything with that file until I close Matlab. How can I close a file ...
12
votes
2answers
12k views

Matlab - Generate all possible combinations of the elements of some vectors

I would like to generate all the possible combinations of the elements of a given number of vectors. For example for [1 2], [1 2] and [4 5] I want to generate the elements: [1 1 4; 1 1 5; 1 2 4; 1 2 ...
2
votes
5answers
12k views

How to concatenate a number to a variable name in MATLAB?

I have a variable a = 1. I want to generate a variable name of the form: variableNumber So in this example, I would want a1 a2 a3 as variables. How can I do that?
13
votes
1answer
13k views

How do you concatenate the rows of a matrix into a vector in MATLAB?

For an m-by-m (square) array, how do you concatenate all the rows into a column vector with size m^2 ?
10
votes
1answer
21k views

How can I sort a 2-D array in MATLAB with respect to one column?

I would like to sort a matrix according to a particular column. There is a sort function, but it sorts all columns independently. For example, if my matrix data is: 1 3 5 7 -1 4 Then ...
6
votes
4answers
37k views

draw ellipse and ellipsoid in MATLAB

How do I draw an ellipse and an ellipsoid using MATLAB? (x^2/a^2)+(y^2/b^2)=1 n=40; a=0; b=2*pi; c=0; d=2*pi; for i=1:n u=a+(b-a)*(i-1)/(n-1); for j=1:m v=a+(d-c)*(j-1)/(m-1); ...
48
votes
5answers
21k 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 ...
8
votes
4answers
32k views

How to normalize a histogram in MATLAB

How to normalize a histogram, so it is a probability density (how is that the sum of all bins are equal to 1?).
51
votes
12answers
35k 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 ...
15
votes
9answers
12k 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 ...
12
votes
3answers
4k views

Render MATLAB figure in memory

Are there any alternatives to using getframe and saveas for saving the contents of a figure to a raster image for further processing? Approach 1: getframe h = figure('visible', 'off'); a = ...
7
votes
4answers
5k views

How can I program a GUI in MATLAB?

I need to create a GUI in MATLAB for my project. I looked everywhere for examples of how to program a GUI but I couldn't find a lot. What are some good sites or techniques for GUI programming in ...
8
votes
4answers
3k views

How Do I Generate a 3-D Surface From Isolines?

I have a set of isoline points (or contour points) such as this: Each point on an isoline has its own respective X, Y, and Z coordinate. Since they are isolines, that means that each point will ...
5
votes
1answer
12k views

MATLAB: how to normalize/denormalize a vector to range [-1;1]

How can I normalize a vector to the range [-1;1] instead of [0;1]. I would to use function norm, because it's faster. And how to denormalize that vector after that? I've tried some solutions, but no ...
7
votes
5answers
471 views

Mapping 2 vectors - help to vectorize

Working in Matlab I have 2 vectors of x coordinate with different length. For example: xm = [15 20 24 25 26 35 81 84 93]; xn = [14 22 26 51 55 59 70 75 89 96]; I need to map xm to xn, or in other ...
19
votes
4answers
23k views

How do I gaussian blur an image without using any in-built gaussian functions?

I want to blur my image using the native gaussian blur formula. I read this, but I am not sure how to implement this. How do I use the formula to decide weights? [I mentioned MATLAB because I do not ...
21
votes
10answers
18k views

Call python function from MATLAB

I need to call a python function from MATLAB. Any ideas how can I do this?
22
votes
5answers
2k 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, ...
27
votes
4answers
38k views

How to get all files under a specific directory in MATLAB?

I need to get all those files under D:\dic and loop over them to further process individually. Does MATLAB support this kind of operations? It can be done in other scripts like PHP,Python...
17
votes
2answers
2k views

How do you handle resources in MATLAB in an exception safe manner? (like “try … finally”)

Since there is no finally clause to the try-catch block in MATLAB, I find myself writing lots of code like the following: fid = fopen(filename); if fid==-1 error('Couldn''t open file'); end try ...
7
votes
2answers
10k views

How do i define a structure in Matlab

I know that a structure can be defined by in several ways such as: Adding fields to a variable p.color.red = .2; p.color.green = .4; p.color.blue = .7; Defining a scalar structure by assignment S ...
10
votes
4answers
2k views

Finding islands of zeros in a sequence

Imagine you have a very long sequence. What is the most efficient way of finding the intervals where the sequence is all zeros (or more precisely the sequence drops to near-zero values abs(X)<eps): ...
6
votes
3answers
4k views

How to call MATLAB code from C?

I have some code that plots triangles in MATLAB. I need to be able to somehow execute this code from my C program which generates these points. Is that possible? How can it be done? Just a thought: ...
10
votes
2answers
1k views

Creating Indicator Matrix

For a vector V of size n x 1, I would like to create binary indicator matrix M of the size n x Max(V) such that the row entries of M have 1 in the corresponding columns index, 0 otherwise. For eg: If ...
8
votes
2answers
10k views

How do I edit the axes of an image in MATLAB to reverse the direction?

I would like to edit the axes in my series of images being displayed. This is what my image looks like: As you can see, it ranges from 0 to about 500 from top to bottom. Can I invert that? Plus, I ...
5
votes
1answer
10k views

How can I plot an image (.jpg) in MATLAB in both 2-D and 3-D?

I have a 2-D scatter plot and at the origin I want to display an image (not a colorful square, but an actual picture). Is there any way to do this? I also will be plotting a 3-D sphere in which I ...
13
votes
3answers
18k views

How to set custom seed for pseudo-random number generator

I need to perform few tests where I use randn pseudo random number generator. How can I set the seed on my own, so every time I run this test I will get the same results? (yeah, I know it's a little ...
8
votes
3answers
5k views

Suppress exponential formatting in figure ticks

Tick labels for ticks bigger than about 10'000, get formatted to 1x10^4 for example. Whereas the exponential part appears above the corresponding axes. This misbehavior has been well described on on ...
2
votes
2answers
4k views

Axis coordinates to pixel coordinates? (Matlab)

How can i convert the axis coordinates into pixel coordinates? I have a set of data which include the negative and floating values, i need to put all of the data into the image. But the pixel ...
12
votes
3answers
17k views

In MATLAB, can I have a script and a function definition in the same file?

Suppose I have a function f() and I want to use it in my_file.m, which is a script. Is it possible to have the function defined in my_file.m? If not, suppose I have it defined in f.m. How do I call ...
7
votes
6answers
3k views

How do I get real integer overflows in MATLAB/Octave?

I'm working on a verification-tool for some VHDL-Code in MATLAB/Octave. Therefore I need data types which generate "real" overflows: intmax('int32') + 1 ans = -2147483648 Later on, it would be ...
17
votes
3answers
2k views

Corner Cases, Unexpected and Unusual MATLAB [closed]

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 ...
22
votes
4answers
36k views

In MATLAB, how do I plot to an image and save the result without displaying it?

This question kind of starts where this question ends up. MATLAB has a powerful and flexible image display system which lets you use the imshow and plot commands to display complex images and then ...

1 2 3 4 5 47