2
votes
4answers
215 views
converting MATLAB code to Fortran
I a medical researcher with code written in MATLAB 2009b that runs very slowly because of a self-referential loop (not sure of the programming lingo here), i.e., the results of the first iteration is …
9
votes
26answers
2k views
What are your favourite MATLAB/Octave programming tricks?
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 …
0
votes
3answers
16 views
Convert yuv sequence to bmp images
Hello;
I have yuv sequences and I want to convert it to bmp images.And I want to save it to folder on my computer.
I used yuv2bmp m file in …
1
vote
4answers
96 views
How to add vectors with different length?
I would like to add two vectors with different lengths in Matlab or Octave. E.g.
aa = [1 2 3 4];
bb = [100 100];
Which should result in a vector cc containing
cc = [101 102 3 4]
Can anyone …
1
vote
1answer
39 views
Matlab - problem with creating SQL query
Hi,
I'm trying to export some data from Matlab to database. I use PostgreSQL database via ODBC as follows. First, I create the connection
dbConn = database('PostgreSQL30', username,password);
If …
2
votes
3answers
44 views
Turn in Matlab a line into a matrix
Hi,
I want to draw a line from on well defined point to another and than turn it into a matrix to use a Gauss filter on it for smoothing. For this I use the functions 'line' and 'getframe', but …
0
votes
1answer
76 views
Solving a MATLAB equation
I've got the following equation:
a^3-4*a^2+[1 0 2;-1 4 6;-1 1 1]=0
How do I solve this in MATLAB?
3
votes
3answers
279 views
mrdivide function in Matlab- what is it doing and how to do it in Python?
I have this line of code:
a/b
I am using these inputs:
a=[1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9]
b=ones(25,18)
this is the result:
[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], a 1x25 …
0
votes
5answers
181 views
MATLAB Solving equations problem
I want to solve these equations using MATLAB and I am sure there is a non zero solution. The equations are:
0.7071*x + 0.7071*z = x
-0.5*x + 0.7071*y + 0.5*z = y
-0.5*x - 0.7071*y …
1
vote
2answers
55 views
numpy to matlab interface with mlabwrap
I am looking for a simple way to visualize some of my data in numpy, and I discovered the mlabwrap package which looks really promising. I am trying to create a simple plot with the ability to be …
-1
votes
1answer
73 views
How do I organize this data into stuctures in MATLAB?
Say for n=5, the following code gives me a plot for n randomly generated nodes. These nodes are not structures (just plotted points), but I want to assign every node a message just as I did for sink …
1
vote
4answers
72 views
How do I compute a PMF and CDF for a binomial distribution in MATLAB?
I need to calculate the probability mass function, and cumulative distribution function, of the binomial distribution. I would like to use MATLAB to do this (raw MATLAB, no toolboxes). I can calculate …
2
votes
3answers
108 views
How do I access MATLAB structure fields within a loop?
I have a structure with many fields which are vectors of different lengths. I would like to access the fields within a loop, in order. I tried getfield as follows but MATLAB doesn't like that. How can …
0
votes
4answers
100 views
Fudge Factor in Matlab
Hello,
Can anyone enlighten me about the use of fudgeFactor in Matlab?
Thanks.
0
votes
2answers
45 views
matrix addition skipping NaN values
I would like to do element wise addition over matrices while skipping NaN values.
MATLAB and Octave have nansum, but it does column wise addition within a matrix.
Let:
a = NaN * zeros(3)
b = …
