0
votes
1answer
66 views

how to reduce dimensionality of vector

I have a set of vectors. I'm working on ways to reduce a n-dimensional vector to a unary value (1-d), say (x1,x2,....,xn) ------> y This single value needs to be the characteristic value of the ...
3
votes
3answers
68 views

Vectorized insertion of elements

I wrote a R function insert to insert a given element e at a given position p of a vector v. Here it is: insert <- function(v, e, p) { if (length(e) != 1 || length(p) != 1) { ...
2
votes
1answer
60 views

Vectorizing Photos: Finding an Adapted Algorithm [closed]

As a little project, I've decided I want to write a small raster to vector converter. Lots and lots of resources are available online, but many fewer actual implementations can give me any kind of ...
1
vote
1answer
99 views

Matlab code runs too slow on three dimensional array

I'm trying to vectorize the following code: % code before % code before % a lot of code before we got to the current comment % % houghMatrix holds some values for i=1:n for j=1:m ...
4
votes
2answers
204 views

Matlab: Convert elements larger (smaller) than 1 (-1) into a sequence of 1 (-1)

UPDATE: I've done some testing, and the solution of Jonas is the fastest for a range of different size input vectors. In particular, as angainor points out, the solution scales up to large sizes ...
4
votes
4answers
273 views

Create matrix by repeatedly overlapping a vector

I'm having great difficulty coding the following in MATLAB: Suppose you have the following vector: a b c d e f g h ... Specifying an (even) window size, create the following matrix of dimensions ...
4
votes
1answer
68 views

Is there a better vectorization technique than this?

I am trying to see if there are other ways of coding this code sample more efficiently. Here, y is an 1xM matrix, (say, 1x1000), and z is an NxM matrix, (say, 5x1000). mean(ones(N,1)*y.^3 .* z,2) ...
1
vote
1answer
113 views

Vectorising a for-loop in Matlab, getting different result for seemingly equivalent code

I'm trying to vectorise a piece of code I'm working on, but I'm getting strange results that don't happen in a seemingly equivalent for-loop. Can anyone see why the two versions are getting different ...
2
votes
1answer
58 views

Creating a vector

The output vector should look like : a=[3 3 3 4 4 4 4 5 5 5 5 5] What i have is: pe=[1 5 9] and ne=[4 8 12] and co=[3 4 5] pe describes the starting index and ne the ending index from each entry ...
8
votes
1answer
191 views

Minimize vector indexing overhead

I have a vectorized function which calculates distance to a large set of points. To improve performance I am limiting the number of the points by selecting only the necessary ones. So instead of ...
1
vote
3answers
255 views

Assigning same memory to class member variables using unions

I am trying to vectorize existing Vector class class Vector { public: float X,Y,Z; }; Trying to vectorize the class members without affecting other classes accessing the these member variable ...
0
votes
2answers
699 views

Direction of two points

Some high scholl math concept has been forgotten, so I ask here. If I have two points p1(x1,y1), p2(x2,y2), the direction is P1-->p2, that's p1 points to p2. To represent this direction by vector, ...
7
votes
5answers
466 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 ...