The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
20 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
65 views

What is the difference of those code snippets?

The following code snippets are my attempts to get the triangles from indices and vertices. The indices vector contains the number of the vertex. The vertices vector contains the coordinates where ...
1
vote
5answers
46 views

Python: finding index of an array under several conditions

I have the following problem. There are two n-dimensional arrays of integers and I need to determine the index of an item that fulfills several conditions. The index should have a negative element ...
-3
votes
2answers
50 views

Perl - searching for partial matches in string array and returning matching indices

Suppose I have a string array @file_paths which contains @file_paths= ["C:\Lazy\FolderA\test.cpp", "C:\Lazy\FolderA\test2.cpp", "C:\Lazy\FolderB\test.cpp", ...
0
votes
0answers
48 views

foreach() reporting invalid argument when argument is definitely an array

I know many extremely similar foreach problems have been posted before, but I haven't been able to find an answer to this. I'm sure it's on here somewhere in the soup of identically-titled questions. ...
0
votes
1answer
32 views

Matlab: Get elements of Cell Array from Indices

I have a 1x84 cell array that I get the indices for cross validation: indices = crossvalind('Kfold',length(filenames),k_fold); for i = 1:k_fold test = (indices == i); train = ~test; Given ...
0
votes
1answer
39 views

Length of a sequential table in Lua may skip indices? [duplicate]

In Lua is seems that if a single numeric key is missing from the table, the length still continues counting: > print(#{[1]=1,[2]=2,[4]=4}) 4 But this skipping two indices stops at the break ...
2
votes
3answers
164 views

In Excel 2007, how can I SUMIFS indices of multiple columns from a named range?

I am analysing library statistics relating to loans made by particular user categories. The loan data forms the named range LoansToApril2013. Excel 2007 is quite happy for me to use an index range ...
2
votes
3answers
112 views

Custom indexes with C++ matrix

I would like to treat C++ bi-dimensional arrays (matrices) in C++ as I can do with R data-frames. What I mean by that is to be able to specify indexes values for the matrices. For example the natural ...
1
vote
1answer
108 views

Get the first column of a matrix represented by a vector of vectors

Suppose I'm representing a matrix foo of values using std::vector: int rows = 5; int cols = 10; auto foo = vector<vector<double>>(rows, vector<double>(cols)); Is there a ...
0
votes
3answers
176 views

Matlab: Find row indice of first occurrence for each column of matrix (without using loops)

For each column of a matrix A consisting of '0' and '1', I would like to find the column indices of the first occurrence of '1' if exists. For example, if A is defined as: A=[0 0 0 0; 0 0 0 1; ...
1
vote
1answer
48 views

How can I find all of the indices of a string in a different string?

My question is pretty straight forward, how can I find all the indices of a string inside of another string? This is the code I wrote but the problem is that all it does is return the exact same index ...
3
votes
2answers
58 views

SAS combining datasets, binary search, indices

In SAS, for the two test datasets below -- for every value of "amount" that falls within "y" and "z", I need to extract the corresponding "x". There could be multiple values of "x" that fit into the ...
0
votes
2answers
368 views

octave error: subscript indices must be either positive integers or logicals

I'm trying to sum the product of an indexed vector and an indexed matrix like this: k=[0:1:N-1] n=[0:1:N-1] x_n = sin(pi*n) N = size(x_n,2) _seqgen(x_n(n)*exp(k*n/N), n, 0..N-1) but I ...
0
votes
1answer
146 views

How Do I draw Vertices using an Index Buffer using OpenGL ES 2.0 and Java (Android)

I'm having trouble figuring out how to do this in OpenGL ES 2.0. I've searched and searched and could not find an answer to how to do this. I've used a book and done it in DirectX Before which was ...
0
votes
2answers
93 views

MATLAB - Perform operation on matrix indices without a for loop

It's been a little while since I've done matrix operations in MATLAB, so please forgive me if this is easily solvable. I have some NxM matrix A, and I would like to perform an operation on the column ...
3
votes
4answers
96 views

Python: split list of integers based on step between them

I have the following problem. Having a list of integers, I want to split it, into a list of lists, whenever the step between two elements of the original input list is not 1. For example: input = [0, ...
0
votes
1answer
92 views

How to handle COLLADA indices?

I wrote a simple reader for COLLADA file format, and it seems to work OK. Now, I have a Blender-exported cube mesh which is edge-splitted and triangulated, so it should have 12 triangles (2 per face), ...
1
vote
3answers
247 views

indices of the k largest elements in an unsorted length n array

I need to find the indices of the k largest elements of an unsorted, length n, array/vector in C++, with k < n. I have seen how to use nth_element() to find the k-th statistic, but I'm not sure if ...
0
votes
1answer
40 views

Matlab vector with on indices values and inbetween zero's

In Matlab I have given a list of indices (e.g. a = [2 7]) and values (e.g. b = [123 642]. I need a function f which returns a vector (c) with the values at the given the indices and zeros inbetween. ...
0
votes
1answer
40 views

SQLITE and autoindexing

I recently began exploring indexing in sqlite. I'm able to successfully create an index with my desired columns. After doing this I took a look at the database to see that the index was created ...
1
vote
2answers
150 views

OpenGL: Are VAOs and VBOs practical for large polygon rendering tasks?

If you wanted to render a large landscape with thousands of polygons in the viewing frustum at a time as well as the user's viewpoint changing constantly, is it practical to use VAOs or VBOs? I ...
3
votes
1answer
72 views

How to use an array as its own indices in Numpy

This works in MATLAB: >> p = [1, 0, 2, 4, 3, 6, 5]; >> p(p+1) ans = 0 1 2 3 4 5 6 Is there a way to do the same thing in NumPy? I can't figure out how: ...
0
votes
2answers
100 views

Converting Fortran to Matlab

good night; I am trying to convert some fortran code to matlab and I do not understand what ist = grp%brp%faceIndicatorArray(-20) ien = grp%brp%faceIndicatorArray(-19) means in the following ...
1
vote
2answers
101 views

Get outer indecies of a region in a logical image

If I've any m x n logical image of a white region like the following: How to get the indices of the boundary line between the white and black regions?
0
votes
2answers
69 views

Eliminating temp var use when accessing a multidimensional array element

Is there a way to address array object's field with its coordinates in one line? I have this array: Tile[,] Tiles. Whenever I need to change one of the tiles and I know the indices beforehand, I just ...
0
votes
3answers
220 views

string indices must be integers error in python, but indices are integers

I'm writing a program to add two numbers from a single line of input of the form: number + othernumber I keep getting a "string indices must be integers" error, but when I call type on all the ...
4
votes
1answer
197 views

Get indices of K smallest or largest elements in eaach row of a matrix in R

How to get indices of K smallest or largest elements in eaach row of a matrix in R? e.g. I have matrix: 2 3 1 65 2 46 7 9 3 2 9 45 3 5 7 24 65 87 3 6 34 76 54 33 6 I'd like ...
0
votes
1answer
44 views

what parameters should I use when drawing this data using glDrawElements?

I am trying to load ply format which looks like this: 0.000000 0.000000 -1.543509 0.000000 0.000000 -1.000000 0.838731 0.300864 106 34 22 vertex pos/ normal dir/texture coords/ vertex color and the ...
2
votes
1answer
138 views

OpenGL ES triangle not showing

First of all I'm french so sorry for my english. I'm new to OpenGL ES and I'm trying to draw a simple triangle with these Vertices : typedef struct { float Position[3]; float Color[4]; } ...
0
votes
0answers
71 views

Feature in Ruby mine is not running due to update of indices

I am trying to run a feature file "xyz.feature" in RubyMine. I am getting an error on clicking on "Run 'xyz'" that "This action is not available while RubyMine is updating indices". Please help. ...
0
votes
1answer
66 views

Indices of a matrix

I can't seem to get the indices of UnseenTestdata and Testdata from fulldata in the example below, can anyone help? pointsToPick = 49402; %# Numbers to pick rVec = randperm(494021); %# Random ...
0
votes
1answer
396 views

How to select and remove specific elements or find their index in a vector or matrix?

Let's say I have two vectors: x <- c(1,16,20,7,2) y <- c(1, 7, 5,2,4,16,20,10) I want to remove elements in y that are not in x. That is, I want to remove elements 5, 4, 10 from y. y [1] 1 ...
1
vote
1answer
112 views

c opengl: can i calculate normals in gpu? (CUDA)

I am trying to access last and next indices coordinates inside the kernel. ex: int idx = blockIdx.x * blockDim.x + threadIdx.x; then pos[idx].x, pos[idx].y, pos[idx].z would give current ...
1
vote
2answers
200 views

SQL/Oracle: SELECT with OR on table with two indices

I have a table in an Oracle DB wich has two indices, one for table field A, one for table field B. Now I need to select all records that have a specific value in field A or another specific value in ...
1
vote
1answer
283 views

JOGL VBO, alternatives to glDrawElements [closed]

I'm running the following code during the render if (fUseVBO) { gl.glBindBuffer(GL.GL_ARRAY_BUFFER, VBOTexCoords[0]); // Set The TexCoord Pointer To The TexCoord Buffer ...
1
vote
2answers
202 views

Python: Finding corresponding indices for an intersection of two lists

This is somewhat related to a question I asked not too long ago today. I am taking the intersection of two lists as follows: inter = set(NNSRCfile['datetimenew']).intersection(catdate) The two ...
2
votes
1answer
909 views

matlab: finding indices of values common for two matrices

I have a simple question. lets say we have two arrays: data = [1 1 2 2 2 2 3 3 3 4 4 4 4 4 5 5 5 5 6 6 6]; A = [1 3 6]; I want to have indices of values from data which are equal to any value ...
3
votes
3answers
265 views

MySQL performance boost after create & drop index

I have a large MySQL, MyISAM table of around 4 million rows running in a core 2 duo, 8G RAM laptop. This table has 30 columns including varchar, decimal and int types. I have an index on a ...
4
votes
3answers
115 views

Efficient way to construct an array taking elements with given indexes from another array in ะก++

Is it possible to create an array from two other arrays, one being the source array and the second one containing the indices of elements to be taken, in C++, using only one command, without cycles, ...
1
vote
1answer
190 views

symbolic matlab matrix to latex

Consider the symbolic matlab expression e = (a_1_1 + a_2_2)*(b_1_1 + b_2_2) Using latex(e) this yields \left({{a_{1}}}_{1} + {{a_{2}}}_{2}\right)\, \left({{b_{1}}}_{1} + {{b_{2}}}_{2}\right) Is ...
0
votes
3answers
158 views

Ambiguity between i, j indices and x, y coordinates when dealing with 2D arrays

Background: I am having a discussion with a friend regarding the correct way to refer to elements within a 2D array for something I'm designing. I was unhappy with using XNA's Point and Vector2 ...
0
votes
3answers
55 views

How to indicate the last indice in a PHP array?

I have a simple mail() script that sends to multiple emails dynamically by seperating the emails with commas. <?php $sendto = array("email@gmail.com", "email@zoho.com", "email@mail.usf.edu"); ...
0
votes
2answers
126 views

java randomize indices in an array

I have looked at Randomize or shuffle an array Randomize or shuffle an array I am not sure if this is the best approach to make. I want to randomize the indices of an array with 3 items. 12 4 5 ...
0
votes
1answer
104 views

Padding column values?

In R 2.14.2 I have a matrix: mat1=matrix(c('A','','','B')) and I want to fill in the empty values so it becomes like this: mat2=matrix(c('A','','','B','A','A','A','B'),2,4,byrow=T) In other ...
0
votes
1answer
43 views

Mapping unique numbers to indices

Say I have a list of unique numbers (e.g. 105, 342, 432, 34, etc.) and I want to map them to indices (0,1,2,3, etc.). Is there a general way to do this? If not, assume that you know beforehand all the ...
3
votes
5answers
134 views

How to get those elements of a vector, where another vector has '1's at corresponding indices

I have a two vectors std::vector<int> markedToBeRead(7); // contains: 1,1,0,0,1,0,1 std::vector<float> myVec(7); // contains: 1,2,3,4,5,6,7 What is the best way, to get ...
4
votes
2answers
190 views

NumPy k-th diagonal indices

I'd like to do arithmetics with k-th diagonal of a numpy.array. I need those indices. For example, something like: >>> a = numpy.eye(2) >>> a[numpy.diag_indices(a, k=-1)] = 5 ...
0
votes
1answer
466 views

Sql Server queries optimization techniques

My Stored Procedure takes a very long time to execute. Can anyone suggest me what I can do to speed up the stored procedure, apart from using some good practices for writing down the queries. I've ...
0
votes
1answer
238 views

Use drawelements in OPENGL ES 1.x with .OBJ and multiple indices

I am teaching myself opengl es. I recently figured out how to parse/load a mesh from .OBJ file. I am now trying to apply a texture to it, I know I can only use one set of indices.. other than that I ...

1 2 3