Loops are a type of control flow structure in programming in which a series of statements may be executed repeatedly until some condition is met.

learn more… | top users | synonyms (3)

1
vote
0answers
12 views

complexity for nested loops

I am trying to figure out the complexity of a for loop using Big O notation. I have done this before in my other classes, but this one is more rigorous than the others because it is on the actual ...
0
votes
0answers
35 views

My loop is not fully incrementing

The script below is to read each section of a file. There is a keyword for each section of the file which needs to change 19 times. After it had been set then the script would skip over the first 5 ...
1
vote
1answer
31 views

C program Loops Constantly when ( used comma or letter) ( starts second loop when entered Y or N ), How to fix it?

Here is the Code and it loops when I enter a letter or use a comma instead of dot, f.e. 0,1 or 0,000045 ... etc. It loops constantly how to avoid that? #include <stdio.h> #include ...
0
votes
3answers
97 views

How to convert this type of for loop in python

for example this kind of for loop in JAVA or C++: int N = 20; for (i = 1; i < N; i = 3 * i + 1) i will be 1, 4, 13 I can only use while to complete it while i < N: i = 3 * i + 1 How ...
-9
votes
2answers
68 views

Foreach object loop

My already code: foreach (KeyValuePair<string, object> keyValuePair in items) { if (keyValuePair.Key == "animals") { Dictionary<string, object> animal = new ...
2
votes
3answers
75 views

How to do an efficient loop with comparisons and insertions in other lists

I'm working on a web application (Python/Django) which handle a big database and I need to optimize this loop in order to obtain a better execution time. I have a list of entries, each entry has a ...
0
votes
4answers
85 views

Jquery/Javascript adding unique classes to a div

I am having an issue with a javascript generated table, which displays fine on the page, The div at the end (bottom_box) needs to have a custom class based on its html content. The code is below: ...
1
vote
2answers
35 views

Remove an object when in a for each loop

I'm making a survival game and trying to remove an object when it goes off the screen. Here is the code: Public Sub tmrEnemyMove_Tick(sender As Object, e As EventArgs) Handles tmrEnemyMove.Tick ...
5
votes
8answers
64 views

PHP: how to do foreach and start from sixth element of collection?

is it possible to start a foreach loop from specific element [sixth element]? im using this code: <?php $num=1; foreach($temp_row as $key => $value) { echo $num; ...
-1
votes
0answers
21 views

better way to do loop in template?

i'm trying to create a function / or class to loop(reusable) and separate php code and html markup, but no idea how , can anyone point me?thanks and appreciate my template.php class Template{ ...
0
votes
2answers
38 views

Random set of non-repeating numbers in Javascript

I have an annoying script I can't complete. I need 32 non-repeating numbers out of a possible 0-64 number set. Every time I try to create a loop to check the new random number against all the numbers ...
0
votes
2answers
34 views

Python tuple not populating

I must be missing something here when I try to populate a tuple in a for loop. ...more code above... colItems = objSWbemServices.ExecQuery(queryString) #print type(colItems) Is the above ...
0
votes
1answer
33 views

What is the JavaScript code for validating a form, getting elements by name, with a loop?

I have read between 5 & 7 posts, have tried to play with some of the things I have read, including jQuery, but it feels as though most posts are well beyond my understanding. I have a form which ...
0
votes
3answers
23 views

Pairs of Positive Integers with loops

(Btw we haven't used arrays yet. Im in my loop chapter) I need to write a Java program that will output all pairs of positive integers, (a,b) such that a and b are greater than or equal to 0 and less ...
0
votes
1answer
32 views

How To Use Timer With Loop in Python

I want to listen serial port and save it for every 15 seconds. But I can't use time in loop. It gives an error as below. File "serial-reader.py", line 13 timer.start() ^ ...
0
votes
1answer
28 views

Looping a grid in canvas HTML5 with “gaps” between squares?

I want to create 5x5 grid with 40x40px squares and 4px gaps between them, here's a picture: http://i.stack.imgur.com/hu96a.png So I intended to do something like this: $(document).ready(function(){ ...
0
votes
4answers
18 views

Text is going up/down? Not across. Javascript Loop.

<html> <body> <script> var namIn = window.prompt("Enter Senator’s State and FULL Name, separated by space:" ); var namAr = namIn.split(""); var namArLen = namAr.length; ...
0
votes
0answers
13 views

PHPBB coding theme subsilver2 Setting Loop

Hello im trying to set a different order to my forum, im using as reference forum.kijiji.ca , But everything was fine until setting the "td" elements only 3 each time inside of "tr" So instead of 3, ...
0
votes
1answer
32 views

running python code, to use sextractor with more than one image file

I have written piece of code which runs sextractor from python, however I only know how to do this for one file, and i need to loop it over 62 files. Im not sure how i would go about doing this. I ...
0
votes
1answer
17 views

loading, editing and writing multiple data sets in R

I am relatively new to R, but have so far managed through effective googling. Unfortunately, I am having a hard to resolving my current problems with google. I have a large number of files which I ...
-4
votes
1answer
46 views

test each object in a list against every other object in the same list exactly once using python [closed]

To highlight what I am trying to do here is the equivalent in C code. for ( int i = 0; i < COUNT; ++i ) { for ( int j = i + 1; j < COUNT; ++j ) { foo( i, j ); } } ...where ...
0
votes
1answer
61 views

How do I iterate through 2 CSV files and get data from one and add to the other?

I'm trying to iterate over a CSV file that has a 'master list' of names, and compare it to another CSV file that contains only the names of people who were present and made phone calls. I'm trying to ...
0
votes
1answer
29 views

Javascript push array item to named index

I have a JSON array: [{ id: 1, client: "Microsoft" },{ id: 2, client: "Microsoft" },{ id: 3, client: "Apple" }] and I'd like to group it by "client", but I'm having difficulty with ...
3
votes
5answers
46 views

Loop setInterval function

I'm not sure why the interval isn't looping. I've followed tutorials exactly but not luck. Suggestions? $(document).ready(function(){ setInterval(function() { ...
2
votes
1answer
62 views

Can't get simple loop working right

def getMSTestPath(testPath): dllFilePath = r'C:\Users\bgbesase\Documents\Brent\Code\Visual Studio' msTestFilePath = [] dllConvert = [] full_dllPath = [] for r, d, f in ...
0
votes
2answers
14 views

Iterate through two arrays, looping one continuously until the other is finished (i.e. Assign colors to menu navigation items)

O.K. Can't quite get any reference to something similar. I have two arrays, one sets my menu navigation items: $nav_items = array('item1_link'=>'item1_displayname', ...
0
votes
1answer
25 views

Action Script 3. Stop game after loop 3 times

I'm creating flash game, Idea is falling objects (in this case apples) from the sky and player need to click on apples. I need to make that when 3 apples are missed show "Game over" or etc, I need to ...
0
votes
3answers
54 views

Prime number loop only writes “2” to console. Java [closed]

I am more or less completely new to Java. I thought I would try to write a simple loop to output a list of prime numbers under 100 into the console, as practice - however as you can probably tell by ...
0
votes
6answers
50 views

Exit a while loop Java

I can not get this loop to stop even though I set the count variable = to false. And it won't go to the next method called in the Main class. Any help would be greatly appreciated. Main Class public ...
1
vote
3answers
53 views

Want to reduce a function by looping through structs

Good Morning All, I'm trying to reduce a function that's very repetitive, but each "repetition" has two structs with struct A.element1 setting struct B.element1. At the moment I have myFunction() ...
0
votes
1answer
19 views

Cycle Through Excel Worksheets and Pausing Each One

I am trying to do something which should be relatively simple but I just cant get it working correctly, I keep killing Excel. I have a workbook with several sheets containing data, pivots and charts. ...
1
vote
4answers
38 views

Find value of more than one variable - JS

I have the following JavaScript source : var Fname = document.getElementById("FirstName").value; var Lname = document.getElementById("LastName").value; var email = ...
0
votes
1answer
46 views

Loop for Arrays in php

<?php session_start(); $link = mysqli_connect("localhost", "xxx", "xxxxxx", "xxx"); /* check connection */ if (mysqli_connect_errno()) { printf("Connect failed: %s\n", mysqli_connect_error()); ...
0
votes
4answers
49 views

Loop through data frame and variable names

I am looking for a way to automate some diagrams in R using a FOR loop: dflist <- c("dataframe1", "dataframe2", "dataframe3", "dataframe4") for (i in dflist) { plot(i$var1, i$var2) } All ...
0
votes
0answers
35 views

Multiple radio groups in a foreach loop

I have two loops, a for loop that stores iterations in an array, and a foreach loop that iterates through the array, assigning radio groups to each iteration value: <?php $current_val = array(); ...
0
votes
3answers
24 views

Loop through data, store as array in Ruby on Rails

This is a very beginner question, but I've searched and can't find anything. I'm attempting to loop through an object, then store the information in an array (or object?) so that I can spit out a ...
0
votes
0answers
21 views

PHP Extract equally from X queues to one queue with Y elements

I need to implement a system of queueing that extracts elements equally from x queues to one single queue with y positions. Let's say I have 5 queues, each with a number of elements and I need to ...
0
votes
1answer
33 views

Access to the next value in a Twig loop

I have a problem to display the next line of a result in a loop using Twig : // Arkiglass/ProduitBundle/Controller/DefaultController.php <?php public function produitAction() { $em = ...
2
votes
4answers
75 views

Interruptable for-loops

I'm currently trying to implemenent interruptable Jobs. The job in general looks like this public abstract class Job { private boolean interruptFlag; public boolean isinterrupted() { ...
1
vote
1answer
40 views

loop over files in a bash script

I want to edit a bunch of files with a bash script. First I need the single path to the file as well as a counter. So far I came up with this: let n=0 ...
0
votes
0answers
21 views

bash script for ffmpeg conversion does not loop

I have this bash script for a batch conversion of some mp4 files: #!/bin/bash ls dr*.mp4 | grep -v -E "\.[^\.]+\." | sed "s/.mp4//g" | while read f do TARGET="$f.ffmpeg.mp4" if ! [ -f ...
0
votes
2answers
18 views

Go to the next parameter Twig

I'm new on Twig and i would like to know how to go to the next value in a loop This is a simple example: {% for user in users %} <table> <tr> <td> ...
0
votes
2answers
32 views

Split string using loop to specific length sub-units

I need to split a string into specific lengths, e.g. if user specifies it to units of max length 4, then the loop should run on the original input "0123456789asdf" to get "0123", "4567", "89as", "df". ...
0
votes
1answer
23 views

Php Yii looping and comparison through object attributes

I'm doing a project in Yii, but i'm quite a newbie in php. so my problem is i need to compare two models...and check each attribute whether they are the same or not. this is basically a php problem i ...
1
vote
2answers
44 views

php foreach loop not working correctly

public function include_header( $h, $h_data ) { // Require header file if (isset($h) && !empty($h)) { $this->header_file = 'includes/header/'.$h; } else { return false; ...
0
votes
3answers
73 views

while loop in python issue

I started learning python few weeks ago (no prior programming knowledge) and got stuck with following issue I do not understand. Here is the code: def run(): count = 1 while count<11: ...
-4
votes
2answers
47 views

Make function loop

Hi I'm trying to get this function to keep looping it just does it once at the moment, thanks. function myFunction() { setInterval(function () { $("#homeFade").fadeOut(600, function () { ...
3
votes
4answers
68 views

Trouble creating Python loop

I have a series of checkboxes with simple values (a, b, c, etc.) that when checked, would "trigger" a string of text to appear. The problem is that I will have a great number of checkboxes, and ...
1
vote
2answers
23 views

For loop output to a list mathematica

I can't seem to get the output from this mess into a list, I know the code is poor, but it works. It takes a value from each iteration of the loop, its this output I need as a list. I can do it ...
0
votes
3answers
32 views

Creating lag variables for matched factors

I have a question about creating lag variables depending on a time factor. Basically I am working with a baseball dataset where there are lots of names for each player between 2002-2012. Obviously I ...

1 2 3 4 5 255