0
votes
1answer
42 views
VBA: How to perform an action on specific elements of an array
In VBA for PowerPoint, as far as I understand, this code gets only the first shape in the active window and nudges it:
Set oShape = oSlide.Shapes(1)
oShape.Left = oShape.Left + …
5
votes
5answers
1k views
How do I iterate through each element in an n-dimensional matrix in MATLAB?
I have a problem. I need to iterate through every element in an n-dimensional matrix in MATLAB. The problem is, I don't know how to do this for an arbitrary number of dimensions. I …
4
votes
4answers
126 views
Clojure: Call a function for each element in a vector with it index
Say I have a vector:
(def data ["Hello" "World" "Test" "This"])
And I want to populate a table somewhere that has an api:
(defn setCell
[row col value]
(some code here))
…
-2
votes
3answers
88 views
How do you Iterate a multidimesional array without knowing the number of dimensions and elements of the array being passed to you?
A SDK is returning me an array with multiple dimensions such as:
int[,,] theArray = new int[2,8,12];
I need to visit each element in the array and return the value and the p …
0
votes
3answers
142 views
Python - Iterate over all classes
How can I iterate over a list of all classes loaded in memory?
I'm thinking of doing it for a backup, looking for all classes inheriting from db.Model (Google App Engine).
Thank …
0
votes
3answers
134 views
Iterating through/Parsing JSON Object via JavaScript
Hello,
I'm having a problem with jQuery/Ajax/JSON. I'm using a jQuery ajax post like so...
$.ajax({
type: "POST",
dataType: "json",
url: "someurl.com",
data: "cmd="+escape …
10
votes
10answers
8k views
What is the best way to iterate over a Dictionary in C#?
I've seen a few different ways to iterate over a Dictionary in C#. Is there a standard way?
0
votes
2answers
383 views
iterate through nested form elements in jquery
Hi!
im sorry if this was posted already i have been looking to no avail..
I just want to know how to loop through nested form 'elements' (elements being not only the strict form …
0
votes
3answers
70 views
Iterating over arbitrary dimension of numpy.array
Is there function to get an iterator over an arbitrary dimension of a numpy array?
Iterating over the first dimension is easy...
In [63]: c = numpy.arange(24).reshape(2,3,4)
In …
3
votes
6answers
168 views
Removing elements from a generic list while iterating around it
I am trying to figure out a better 'pattern' for working with a list of elements that I want iterate around and then discard given certain criteria.
In other words I want to loop …
2
votes
5answers
201 views
How can I iterate through nested arrays in Perl?
I have created an array as follows
while (defined ($line = `<STDIN>`))
{
chomp ($line);
push @stack,($line);
}
each line has two numbers. …
1
vote
2answers
99 views
Iteration through GroupCollection in C#
Hi, I'm currently trying to implement the use of regular expressions:
Regex reg_gameinfo = new Regex(@"PokerStars Game #(?<HID>[0-9]+):\s+(?:HORSE)? \(?(?<GAM …
0
votes
1answer
119 views
How to loop through WPF StackPanel static Items?
Probably very easy but I am having trouble to figure this out (also Google doesn't seem to help much).
How can I loop through the statically declared elements (no databinding - el …
2
votes
4answers
241 views
Remove elements as you traverse a list in Python
In Java I can do by using an Iterator and then using the .remove() method of the iterator to remove the last element returned by the iterator, like this:
import java.util.*;
publ …
1
vote
2answers
220 views
Pythonic way of iterating over 3D array
I have a 3D array in Python and I need to iterate over all the cubes in the array. That is, for all (x,y,z) in the array's dimensions I need to access the cube:
array[(x + 0, y + …
