0
votes
0answers
66 views

Avoiding For-loops in MATLAB

Given below are 3 for loops in MATLAB each of which I need to convert to a non-loop code for performance issues. Update: Problems in Loop 2 and 3 have been resolved through the use of vectorization ...
2
votes
2answers
42 views

Subtracting multiple vectors from each row of an array (super broadcasting)

I have a data set, X that is m x 2, and three vectors stored in a matrix C = [c1'; c2'; c3'] that is 3 x 2. I am trying to vectorize my code that finds, for each data point in X, which vector in C is ...
2
votes
3answers
19 views

How to vectorize a sum of dot products between a normal and array of points

I need to evaluate following expression (in pseudo-math notation): ∑ipi⋅n where p is a matrix of three-element vectors and n is a three-element vector. I can do this with for loops as follows ...
2
votes
1answer
50 views

Matlab: How to vectorize a nested loop over a 2D set of vectors

I have a function in the following form: function Out = DecideIfAPixelIsWithinAnEllipsoidalClass(pixel,means,VarianceCovarianceMatrix) ellipsoid = ...
1
vote
3answers
52 views

Understanding Vectorization

I'm trying to make some code more efficient, and am wondering how to vectorize this: %========================================================================== % MinutesInDayTable.m % % Creates a ...
3
votes
2answers
38 views

Find specific occurances within a vector in MATLAB, without for-loop?

I have a problem that seems to be simple but maybe I am missing something. Let us say I have: vector = [10:1:19];. I have another vector, want = [11 16 19]; I simply want a way in which a command will ...
1
vote
2answers
45 views

Extract data from MATLAB matrix without for-loop

In MATLAB, let us say I have a 10 x 100 matrix, called M. What I would like to do, is extract particular indicies of this matrix, and do an operation on them immediately, based on the row index, in a ...
2
votes
2answers
45 views

Matlab: construction of very large sparse band matrix with as little memory and computation

I need to construct a large NxN sparse band matrix A with N = 570*720 = 410400 (# of image pixels). Mathematically, A(m,n) = C1 * exp(-|m-n|^2); m = 1:N, n = 1:N Basically its a Gaussian function ...
3
votes
1answer
62 views

Is taking logs to vectorize repeated multiplication the right approach?

I recently wrote an implementation of Naive Bayes to classify examples into one of 5 different groups. The number of features n was very large, and each feature could be on (1) or off (0). Using the ...
2
votes
1answer
53 views

Vectorizing loops

I'd like to optimise the following code, which is just a matrix multiplication - I'm sure this can be done without the use of loops - but I can't quite seem to get it right. k = [ 76 150 29; ...
1
vote
2answers
34 views

Efficiently compute many inner products in matlab

I am working on a project for which I need to compute a lot of inner products in high dimensions. I am aware that we should always try to vectorize operations in matlab, but I am not sure how to do ...
1
vote
1answer
39 views

Replicate and permute in 4D

Let X1, X2, X3, X4 be row vectors of size [1xN1], [1xN2], [1xN3] and [1xN4] respectively. I would like to replicate and rotate these row vectors to obtain 4 corresponding 4D arrays A1, A2, A3 and A4 ...
2
votes
2answers
69 views

MATLAB - work directly with indices of a matrix without using a loop

I saw this other question but he's operating only on one index. I need to operate on both column and row indices without using a for loop. Is there a way to do this: Let M (a,b) be the matrix and ...
6
votes
1answer
50 views

How to loop a matrix with a window in Matlab

I have a n-by-m matrix in Matlab and I would like to loop the matrix with a window of specific size and then do some calculations (e.g. mean, standard deviation) on the values inside the window. The ...
0
votes
0answers
45 views

MATLAB: How to expand vector to matrix [duplicate]

Recently I'm learning machine learning, using MATLAB to solve problems. I'm curious if there is a simple way to expand a vector like 1 1 1 2 2 3 4 to 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 ...
0
votes
1answer
48 views

How do I find the indices of the elements of one vector in a matrix in Matlab?

Suppose I have a 9x9 matrix A that that consists of integers. I have another matrix IDX that's 2500x4 and consists of the same integers in A. I want to find the indices of all the values in IDX in the ...
4
votes
2answers
83 views

MATLAB fast (componentwise) vector operations are…really fast

I am writing MATLAB scripts since some time and, still, I do not understand how it works "under the hood". Consider the following script, that do some computation using (big) vectors in three ...
2
votes
1answer
50 views

Vectorize code that operates on 3-D matrices

I want to organize the data returned by sph2cart as a matrix with vector elements, and operate on each element in this matrix (vector-vector or vector-scalar calculation). Here is an example wher I ...
1
vote
1answer
72 views

Matlab - Vectorizing nested loops when the inner loop depends on the outer ones

I'm working on a function which takes an n-by-1 array (called "ts") as input and creates a n-by-n matrix (called "V"), where each element of V is either 0 or 1. Now imagine "ts" as a plot: If one can ...
5
votes
1answer
64 views

Matlab: speed up large for loop

I'm trying to get 3 by 3 masks from a large matrix into vectors. Currently, this is my code: A=rand(3264,2448) [rows cols]=size(A); T=zeros(9,prod(size(A)-2)); for i=1:rows-2 for j=1:cols-2 ...
3
votes
3answers
101 views

matlab: remove duplicate values

I'm fairly new to programming in general and MATLAB and I'm having some problems with removing values from matrix. I have matrix tmp2 with values: tmp2 = [... ... 0.6000 20.4000 ...
3
votes
1answer
35 views

Create struct from multiple arrays in a one-liner

Let's say I have two arrays of the same size: X = [1 2 3 4 ...] Y = [1 2 3 4 ...] But what I want is a struct: S(1) = S(2) = X: 1 X: 2 Y: 1 Y: 2 The ...
2
votes
1answer
49 views

Convert an array of bounded integers to matrix of bit arrays

Suppose I have an array a of bounded integers (in this case bounded by 5): a = [3 4 4 2 1 5 5]; I want to convert this array of integers to a length(a) x 5 matrix A where each row is a bit array ...
2
votes
1answer
46 views

Vectorizing ODE in Octave / Matlab

If I have an ode and wrote it in two ways, like here: function re=rabdab() x=linspace(0,2000,2000)'; tic; [T,Y] = ode45(@fun,[x],[0 1 1]); [T,Y] = ode45(@fun,[x],[0 1 1]); [T,Y] = ode45(@fun,[x],[0 1 ...
7
votes
2answers
96 views

Summing array by indices from another cell array

I have an array: a = [109, 894, 566, 453, 342, 25] and another cell array of sub-indices of a, denoted as: subs = { [1,3,4], [2,5,6], [1,3], [3,4], [2,3,4], [6] }; I want to avoid the ...
7
votes
3answers
65 views

Most efficient way for repeating a vector in Matlab

What is the most efficient way for repeating a vector? I'm currently under the impression that repmat is superior to any other methods? Or am I horribly wrong with this mindset? Would it be possible ...
0
votes
1answer
34 views

how can I vectorize setting the index values to one in Matlab?

I have the following loop that does what I need: > whos Y Name Size Bytes Class Attributes Y 10x5000 400000 double > whos y ...
0
votes
2answers
27 views

Obtain matrix of indices in octave / matlab

Given some multidimensional matrix A in Octave / Matlab, What's the easiest way to get a matrix of the same size as A where all elements are replaced by their index along the k'th dimension ie for ...
0
votes
2answers
46 views

matlab - removing if statements when obtaining data from a table

I have the following table nc a b 0.9 <= nc 0.33 -0.45 0.5 <= nc < 0.9 0.95 -0.75 0.1 <= nc < 0.5 2.2 -0.97 nc < 0.1 ...
4
votes
3answers
90 views

Matlab - How do I compare two strings letter by letter?

Essentially, I have two strings of equal length, let's say 'AGGTCT' and 'AGGCCT' for examples sake. I want to compare them position by position and get a readout of when they do not match. So here I ...
1
vote
1answer
34 views

Matlab: vectorizing update for annotation variable

Using Matlab, I've created a graphical user interface that involves 100 circles on the screen. I've stored the handle of each annotation within a vector called neurons. At every iteration, I want to ...
1
vote
3answers
86 views

Regarding using while loop in Matlab [duplicate]

Let I have a given matrix as: 0.7540, 0.7471, 0.7370, 0.7299, 0.7235, 0.7143, 0.7085, 0.7025, 0.6941, 0.6879, 0.6818, 0.6738 Now I wish to apply while loop so that it displays the number of values ...
1
vote
1answer
39 views

Vectorizing in Multiple Dimensions

I have the following for loop in my Matlab code I'd like to get rid of: for i=1:size(thePolygon,3) activeValues(:,i) = sum(normalVectors.*thePolygon(:,:,i),2); checkValues(:,i) = ...
1
vote
2answers
53 views

How to vectorize matrix whose index is matrix in MATLAB?

I have two for-loops embedded in a code that is repeated many times. I want to speed things up: for i = 1:10 for j = 1:10 A(i,j) = B(i,j,D(i,j))*C(i,j); end end Here D consist of integers ...
11
votes
3answers
128 views

vectorize/optimize this code in MATLAB?

I am building my first large-scale MATLAB program, and I've managed to write original vectorized code for everything so for until I came to trying to create an image representing vector density in ...
0
votes
1answer
27 views

Vectorize functions on regions of array Octave/ Matlab

I would like to vectorize the following Octave code: A = 1:100; B = [20 40 60]; C = zeros(3,11); for i = B, C(i,:) = A( (B(i) - 10) : B(i) ); end Which extracts sub-arrays starting at specific ...
5
votes
1answer
102 views

MATLAB: Create a block diagonal matrix with same repeating block

I have a matrix K of dimensions n x n. I want to create a new block diagonal matrix M of dimensions N x N, such that it contains d blocks of matrix K as its diagonal. I would have directly used M = ...
2
votes
1answer
45 views

Octave/Matlab: change value at certain position in matix

I have a vector which tells me where in matrix I have to change certain bit and matrix with data. For example: a = [2 0 4] data = [ 1 0 1 0; 0 0 1 0 1 1 1 1] a tells ...
2
votes
1answer
48 views

Vectorized transition matrix reduction

I'm trying to find a wizard's vectorization for the following iterative computation (please look at the later edit): % A is a logical matrix of size NxN B = false(size(A)); for k1 = 1:N, for k2 = ...
1
vote
1answer
58 views

vectorize a filter to a subsequence of an array in Matlab

I have a vector,"a", and a filter,"b".Both of those vectors contain only 0 or 1. I would like to transform "a" such that any sequence of 1 only starts when b is at 1. I have illustrated this using a ...
0
votes
0answers
57 views

How to prevent Signal drifting when changing frequency

When I recreate a signal it seems to look great. But when I try and increase it's frequency (which is done in a for loop and the variable new_freq=2) it starts to drift. See Image below (The top ...
3
votes
1answer
70 views

make this matlab snippet run without a loop

I want a code the below code more efficient timewise. preferably without a loop. arguments: t % time values vector t_index = c % one of the possible indices ranging from 1:length(t). A % a MXN array ...
2
votes
2answers
48 views

Quickest way to get elements given matrix of indices in MATLAB

I have an N by 2 matrix A of indices of elements I want to get from a 2D matrix B, each row of A being the row and column index of an element of B that I want to get. I would like to get all of those ...
4
votes
2answers
48 views

Adding up different number of elements from each row

I have a main matrix, say A=magic(5); and also a vector v=[1;3;5;2;2]; I want to add up row-wise the elements of A in this way: add first row from the v(1)st element to the end, second row from ...
0
votes
2answers
42 views

Vectorize sum of outer products in matlab

Any ideas how to vectorize this code? The result S should be 3x3. %PNorm is n x 3 S = zeros(3,3,n); %TODO vectorize for i = 1:n S(:,:,i) = Pnorm(i,:)'*Pnorm(i,:); end S = sum(S, 3);
0
votes
1answer
29 views

Vectorize index set building

I need to build a cell array of indices. Each cell contains all indices corresponding to a unique value of ori in the following code: oriVals = unique(ori); oriIndicies = cell(numel(oriVals), 1); for ...
0
votes
1answer
38 views

Matlab Combine Row Vectors into one row

Is there a vectorized, automated way to fill a row vector l times with repeating numbers x such that x is increased by y after a certain number k of elements? k, l, x, and y are given. Two examples: ...
0
votes
1answer
40 views

finding the count of occurnce of each row in matrix

i have a matrix that sorts based on its rows. in example the matrix may be as fallow M=[ 0 3 1 1 1 2 1 2 1 2 1 2 1 3 1 3 2 0 2 2 2 2 2 3 3 2 3 3 3 3 ]; i want to find ...
1
vote
3answers
56 views

is it possible remove for loops from my code?

i want to remove nested for loops from my code? i can't remove them. k = 3; Data = rand(100,5); m = zeros(size(Data)); N = size(Data,2); % number of features M = size(Data,1); % number of ...
0
votes
1answer
109 views

Matlab: Avoid for-loop by using clever matrix indexing & find? How?

I've been getting into Matlab more and more lately and another question came up during my latest project. I generate several rectangles (or meshs) within an overall boundary. These meshs can have ...

1 2 3 4 5 7