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.
0
votes
4answers
21 views
Uncaught TypeError: Cannot set property '0' of undefined
I keep getting Uncaught TypeError: Cannot set property '0' of undefined, but I can't for my life figure out what is wrong!
var anchor = [];
getAnchors();
function getAnchors() {
...
0
votes
0answers
76 views
Foreach loop using php
I am encountering a problem when printing out the array that is stored inside $description.
Here is my code:
<?php foreach($descriptions as $description) { foreach ($languages as $language) { ...
-2
votes
1answer
36 views
Compare 2D array with some logic, can't think of it
//2D array with row4 and column4
11 12 18 40
14 15 13 22
11 17 19 23
17 14 20 28
My question is how do i looping the idea like this
. When looping for [0][0] = 11.
for the same entire ...
0
votes
2answers
23 views
How to optionally repeat a program in python
I'm learning python and had a quick question.
I have to write a code to find the cube root, which I've done.
I want to give the user the option of calculating another cube root, or quitting.
...
0
votes
0answers
20 views
Javascript Object and Variable w/ same name?
I'm a new coder trying hard to interpret some sample code.
In the project I'm looking at, there's both a 'chat' object and 'Chat' variable (both shown below).
On the same .js page where the 'chat' ...
-1
votes
0answers
9 views
Iterate through Listviewitem in WPF
Hi I have rather strange requirement of gathering data through bunch of xml files and binding it to Listview(WPF one). this part was somehow completed . but the challenge now is I have to export the ...
1
vote
2answers
51 views
For loop invalid syntax white space [closed]
If you want to see the complete code:
http://www.smipple.net/snippet/a7xrturo/Hangman%21%20%3A%29
And here is the part of code that doesn't work:
The error is marked in the whitespace between ...
0
votes
0answers
3 views
loading dynamic data and iframe into a collapsible panel
I am trying to load dynamic data into the tittle of a collapsible panel and load an iframe into the content section. I have several links to external sources and I want to use an iframe so that I can ...
0
votes
2answers
42 views
Need While Loop to pause to allow user to press a button in c#
I need help stopping this loop from constantly looping, i need it to give the user time to choose something in the new form it opens up but currently it just opens a whole load of them and doesn't ...
0
votes
0answers
19 views
LoDash|Underscore bottom up recursive loop
What's the best way to make a recursive loop over an object containing other nested objects in arrays starting from the last child going up to the parent?
That's my data structure:
[
{
...
0
votes
0answers
14 views
JQuery tab stacking content
Has anyone had to deal with JQuery tabs stacking the content? There seems to be a cumulative effect.
The page I am creating is a 1 page data collect and report style web page. The initial input is ...
2
votes
1answer
36 views
VBA Nested If / range match
I have a pretty large excel file that houses a list of employees, a few columns of paycheck data, then a fiscal week assigned to when that data was collected.
I am trying to search though this data ...
1
vote
3answers
36 views
Make a while loop when the array is empty?
I have code that will make an array or arrays of UNKNOWN length because it depends on how many new people have been added to the mysql DB. (this is where I'm getting confused)
The array has $x items, ...
2
votes
1answer
60 views
Memory management and speed in for-loops
I've just read that in a text-book, so I wanted to know if that's actually true.
Let's say, we have an array with some values in it that we want to iterate through:
for(int x = 0; x < ...
1
vote
2answers
41 views
2D lists generation Python
I know that to generate a list in Python you can use something like:
l = [i**2 for i in range(5)]
instead of using for loop like:
l = []
for i in range(5):
l.append(i**5)
Is there a way to ...
0
votes
1answer
24 views
EXCEL VBA: Suspended 'For Loops'
General Question...
What dangers exist if I suspend/exit/interrupt a 'For' loop in my VBA Code (Excel based)?
Here is my code:
For i = 1 to Sheets.Count
'check stuff
'do stuff
if ...
0
votes
2answers
60 views
How to Start an each() Loop When it Ends [closed]
I use each() function in jQuery for some operations :
$("div img").each(function(){
//loop count = count of img tags
});
And how i can start this each() loop again when it ends?
I want to ...
0
votes
2answers
38 views
How to echo out an array of arrays using ForEaches
I have a form that asks the user to enter certain information about his or her cat, then the user may submit his information and it will be transferred to the database. I want this information to be ...
0
votes
0answers
8 views
Converting AJAX-based repetitive web requests to single PHP cron
I currently have a JQuery/AJAX/PHP/MySQL setup that needs to make about 2000 web requests and then process each of the responses with multiple PHP/MySQL functions. Here's the basic run that happens ...
1
vote
3answers
41 views
Creating multiple arrays dynamically in C/Fortran based on loop iterator
I want to create multiple arrays based on the iterations of a loop in C.
For example:
int i, size;
for ( i =0; i< 10; i++)
{
size = i * 100
create_array(i,size); // This loop iterates 9 ...
-2
votes
2answers
42 views
PHP foreach loop table with twitter Bootstrap
I am having trouble implementing a foreach loop table into twitter Bootstrap for displaying users points from the database:
<ol>
<?php foreach($ranking as $key1 => $value1): ?>
...
0
votes
0answers
27 views
Alternative animation jquery
Actually i use this function for move image background in loop :
var scrollSpeed = 70;
var current = 0;
var direction = 'h';
function bgscro()
{
current -= 1;
...
0
votes
0answers
23 views
How to loop through a excel table and print out values on another sheet?
I have no experience in excel VBA but have a good amount in C++. My problem seems pretty simple. What I would like to do is write a macro to loop through a range of cells by changing the next cell to ...
1
vote
0answers
36 views
R: data.frame too slow in loops?
I'm backtesting trading strategies with R. This is at the moment my code.
- MergedSet$FXCloseRate contains the closing price for a certain currency pair
- MergedSet$RiskMA is the moving average of a ...
0
votes
2answers
24 views
access the tableRow id value by iterating over the whole table in Javascript
I want to move the tableRow upwards in a html table if the user clicks on it.
Here is the html:
<tr id="duration_row" onclick="moveUp('duration_row', 'sort_table')">
I decided to write my own ...
0
votes
1answer
41 views
how to continue a loop despite error in parsing byte data
my question is a continuation of this: (loop for reading different data types & sizes off very large byte array from file)
I have a raw byte stream stored on a file (rawbytes.txt or bytes.data) ...
-2
votes
3answers
36 views
remove value from for loop [closed]
Is there any php function that can do this.
$k = 6;
for($i=1;$i<$k;$i++)
{
//exclude number 2,3,4
echo $i.'<br/>'; //display 1,5,6
}
-1
votes
0answers
25 views
R: Complex function with lookback (for backtesting trading strategy) possible with apply?
I'm new to R and still don't grasp the apply function entirely. For simple cases I do, but I'm not sure this would work with an apply? I have a data frame with a Risk Indicator Moving Average ...
0
votes
1answer
38 views
Looping through list and hide child li based on if statement
I have a jquery mobile site that has a dynamic unordered list generated from a postgres and a while command in php.
After the page is ready how can I go through each list block and read the text ...
0
votes
3answers
60 views
For loop that prints every line to a file. Error
I'm trying to make a for loop that prints every line in a list to a file, however I get this error. Any help? Thanks
def write_file(filename, rabbitlist, foxlist, finallist, averagefox, ...
0
votes
2answers
27 views
stop each() loop, depending on a variable,then continue it from that element (jQuery)
I am trying to stop an each() loop if the user clicks in certain div, then if he clicks another div continue with the loop (from the element it was).
The thing is I am creating a variable ...
2
votes
5answers
56 views
Which for loop should I use for JavaScript arrays and objects? [duplicate]
I always use for (i=0; i<array.length; i++) when looping through arrays.
I always use for (var i in object) when looping through object properties.
I can't use for (i=0; ... ) for object ...
1
vote
3answers
51 views
Add column in which a value j of a row i is inserted
I am trying to use a loop to print the column (variable) corresponding to certain specific values of a row (sample) in a large data frame. For example
c1<-c(1,2,3)
c2<-c(4,5,6)
c3<-c(7,8,9)
...
0
votes
0answers
16 views
How to add multiple menus in Wordpress theme?
I am developing a new Wordpress theme, and I need two menus, the main menu, and the footer menu. This is what I have in functions.php:
if ( function_exists('register_nav_menus')) {
...
2
votes
1answer
24 views
How to store a double loop result in a matrix with observations of two samples as rows and as columns
I'm a beginner with R. I wrote a double for loop for computing the dot product between each row of matrix x w.r.t. all the observations of sample X per time. I do not know how to store the results in ...
-1
votes
2answers
35 views
Getting App To Wait A Few Seconds Java [duplicate]
I am currently writing a game and would like the app to wait a certain amount of time before proceeding. I have tried the sleep function and it does not do what I would like it to. I have a loop for ...
-4
votes
0answers
54 views
How to loop a sound in Java?
EDIT: Actually it can be done with an if statement @statueuphemism fag.
try
{
File fl = new File("C://Users//angelo//Desktop//liver.au");
String st =fl.getPath();
InputStream in = new ...
2
votes
1answer
44 views
Getting invalid argument for foreach error when using an array
I can not understand why this error is occurring. From what I can see I the function I use correctly returns an array of data that exists on the database. I use a foreach() to echo out each of the ...
0
votes
3answers
57 views
Extract values from a multidimensional arrays with js
What is the easiest to understand solution to get out the values as follows:
Bill, Smith, 32
Sarah, Lord, 28
I only got this far:
HTML
<a href="#" ...
0
votes
2answers
66 views
Why doesn't While loop start?
I have the following code, everything seems to be working except for the while loop, here is the code:
JLabel img = new JLabel(loadingScreens.getImageIcon(0));
loadingFrame.setUndecorated(true);
...
2
votes
3answers
55 views
Java: not exiting while loop? [duplicate]
import java.util.Scanner;
public class OrigClass {
public static void main (String[] args){
Scanner ScanObj = new Scanner(System.in);
System.out.println("Set Password: ");
String SetPass = ...
-4
votes
1answer
25 views
For/if/else loop has unexpected identifier
function hitPlayer()
{
for (var i=0; i<4; i++);
{
if i==0;
{
turnCard('hit5'};
}
else if i==1;
{
turnCard('hit6');
}
...
0
votes
3answers
22 views
Wordpress Loop does not work properly in category.php when using query_posts
I am developing a wordpress theme. I am new in this field, and it's not very easy.
I wrote the code for the loop, and everything is working perfectly. I am working on category.php page. Without the ...
0
votes
1answer
36 views
VBA to Copy Information From a Folder of Files and Compile Information to a Single Workbook
I am trying to get a range of data from multiple workbooks in a single folder location, and past all that information into a single worksheet on a pre-existing file.
So far, I have the function to ...
0
votes
2answers
53 views
SED command inside a loop
Hello: I have a lot of files called test-MR3000-1.txt to test-MR4000-1.nt, where the number in the name changes by 100 (i.e. I have 11 files),
$ ls test-MR*
test-MR3000-1.nt test-MR3300-1.nt ...
0
votes
1answer
11 views
Stop pyzmq receiver by KeyboardInterrupt
Following this example in the ØMQ docs, I'm trying to create a simple receiver. The example uses infinite loop. Everything works just fine. However, on MS Windows, when I hit CTRL+C to raise ...
-5
votes
0answers
74 views
Array vs 'for' loop (javascript) [closed]
I'm new to JavaScript and I'm having trouble understanding this sample code for a Q&A mobile app. The following code is for the question page of the mobile app:
for(var i = 0; i < ...
0
votes
2answers
77 views
still having error for NullPointerException [duplicate]
i tried to tweak here and here but still come out error.
the error is when i want to do something with the element inside the array either want to display it, store element or
searching using index. ...
0
votes
2answers
35 views
Loops - why going infinite? [closed]
I wrote some code and it is not working. My browser freezes and it looks like it is an infinite loop. Is it?
<?
$howmanypages= ceil($num/5);
if($howmanypages>1)
{
$b=1;
echo ...
0
votes
1answer
16 views
how to stop an array iteration if an index contains an inner array to iterate, then continue
I want to iterate over an array, fading each one in then out. But if an index within that array should contain an array of it's own I want the outer array to stop; then animate it's internal array; ...


