The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
42 views

Language: C; Compute a series recursive and iterative

I am currently trying to prepare myself for an exam and I stumbled across the following assignment: Compute the series (recursive and iterative) 1-(1/2)+(1/3)-(1/4)+(1/5)...(1/n). I searched the web ...
2
votes
2answers
87 views

Optimising iterative loop

I'm gradually moving from Matlab to Python and would like to get some advice on optimising an iterative loop. This is how I am currently running the loop, and for info I've included the code that ...
1
vote
2answers
54 views

C++, instance of class within same class, parent/child structure within class

I'm quite new to C++ and looking for some advice on the following problem. I'm trying to create a program that generates tree shapes (yes, real trees). These shapes are built completely from branches. ...
0
votes
2answers
66 views

Python Iterative Loop Plot values

I am trying to carry out an iterative calculation in python using a finite difference method. The values that the code calculates are correct. The problem is that it is only showing the final ...
-1
votes
0answers
17 views

Parallelization of an iterative model [closed]

Let's say I consider a certain algebra to model a specific rate along numerous iterations. Let's say any iteration (In) is depedent (through the above mentioned algebra) from its precedent (In-1). ...
0
votes
1answer
60 views

How to create iterative boost threads?

I am working with Boost threads library in C++ and I want to create different threads to process some buckets of data. Firstly, I load the data into smaller buckets (100 elements each) and assign each ...
1
vote
0answers
44 views

Can someone expain me the BiCGSTAB method

I have to implement BiCGSTAB methos in C++ programming interface. I tried understanding it on various blogs and page but couln't get the satisfaction. I also tried reading code provided by some of ...
0
votes
0answers
255 views

count inversions with non recursive merge sort

This is a homework and I need to count the number of inversions in an array using mergesort. I am supposed to implement both a recursive and an iterative function. The recursive function works just ...
3
votes
2answers
245 views

Red-Black Gauss Seidel and OpenMP

I was trying to prove a point with OpenMP compared to MPICH, and I cooked up the following example to demonstrate how easy it was to do some high performance in OpenMP. The Gauss-Seidel iteration is ...
0
votes
0answers
12 views

Using interactive mode in excel: How to average and std on a single changing cell?

I am using Excel on iterative model and want to calculate the average of a cell that changes automatically. For example how to create a counter and calculate its average and std in interactive mode?
-1
votes
3answers
61 views

How can I avoid the repetetive code in this jQuery code? ANSWERED

Hello I am making a site and this code lets me have several pages in 1 .html file. Can the iterative-ness of this code be avoided? Can it be simplified? answered
0
votes
0answers
111 views

FFT Implementation not working [closed]

I am implementing the Iterative version of FFT from Introduction to Algorithms, Coremen and I am not able to make it work. I did some unit testing on other parts of the entire program and they all ...
0
votes
0answers
55 views

Iterative refinement with new data

I have a timeseries with enough data points that it's difficult to store it all in memory at once, but would like to solve a linear system of equations using all of it, so I'm looking for a way to ...
0
votes
1answer
342 views

Non-Recursive DFS Implementation

Recently I needed to implement non-recursive DFS as part of a more complicated algorithm, Tarjan's algorithm to be precise. The recursive implementation is very elegant, but not suitable for large ...
3
votes
2answers
126 views

SOLVED: Error renaming a File in a for loop?

I have this code in Java. The randomName() function returns a string with (unsurprisingly) a random string. File handle = new File(file); String parent = handle.getParent(); String ...
0
votes
2answers
57 views

following iterative and agile in asp.net MVC

ok, i know there are a lot of posts online that specify how to do iterations with MVC. my question is slightly different. when i used to do iterations using WebForms, i was creating one thing only ...
0
votes
1answer
34 views

Cypher Query Labguage Neo4j, Iterative functions

I have a database with ~1'000,000 nodes, each node has two principal properties: mass and lev, I have lev 1 to 50, and I want to find de biggest node (given by mass) in each lev, my start node can be ...
3
votes
5answers
722 views

Printing Reversed linked list iteratively

I am currently writing a program that has a function that prints a linked list in reverse. I need to print the reverse of what this code prints using the iterative approach. EDIT: It is a single ...
0
votes
0answers
77 views

Efficient method to check for matrix stability in CUDA

A number of algorithms iterate until a certain convergence criterion is reached (e.g. stability of a particular matrix). In many cases, one CUDA kernel must be launched per iteration. My question is: ...
0
votes
0answers
86 views

Iterative method for solving linear equations that generate narrower and narrower bound on the solution

I know that there are many methods that solve linear equations $Ax = b$ iteratively. But I'm curious if there's one that in each iteration tells us a bound on the solution. Specifically, assume $Ax^* ...
2
votes
2answers
94 views

Navigation loop for a sequence of list items

If you look at the top of the interface, I have 7 icons. Each icon has a corresponding label (using <li>) . When I click the 'Next' button, I want to show next label <li> and hide the ...
3
votes
1answer
91 views

Can I make this iterative process recursive in scheme?

I have this iterative process in Scheme. (In fact I don't really know what kind of process it really is) (define (contains-double? lst) (cond ((or (null? lst) (null? (cdr lst))) #f) ((eq? (car ...
2
votes
1answer
337 views

iteratively deep copy a link list

This is an homework assignment. To change the following recursive deep copy method into an iterative equivalent. I came up close, and need your help to make it right. Recursive implementation: public ...
0
votes
0answers
471 views

Iterative InOrderTraverse of a binary tree in java

Ok so i have an assignment where i need to iterate through a binary tree and print out the inOrderTraverse. i feel like i'm at least heading in the right direction but not really sure where to go, i ...
8
votes
1answer
292 views

Is there a quick way of finding if (n-1)! is divisible by n?

I know the usual way of finding n-1 factorial iteratively and then checking. But that has a complexity of O(n) and takes too much time for large n. Is there an alternative?
2
votes
1answer
271 views

tail recursive vs iterative algorithms

I couldn't find articles describing why tail recursive functions should be preferred over iterative algorithms. I'm not asking why tail recursive is better than simple recursive which I think is ...
0
votes
2answers
66 views

java StdArrayIO array read

I'm working on a iterative function system program, and there's a section of code here: double[] dist = StdArrayIO.readDouble1D(); double[][] cx = StdArrayIO.readDouble2D(); double[][] cy = ...
2
votes
2answers
2k views

Quicksort : Iterative or Recursive

I learnt about quick sort and how it can be implemented in both Recursive and Iterative method. In Iterative method : Push the range (0...n) into the stack Partition the given array with a pivot Pop ...
1
vote
0answers
129 views

Solving a system of coupled iterative equations containing lots of heavy integrals and derivatives

I am trying to solve a system of coupled iterative equations, each of which containing lots of integrations and derivatives. First I used maxima (embedded in Sage) to solve it analytically, but the ...
0
votes
3answers
372 views

TSQL set the column value of a table variable

I am trying to set individual columns of a table variable iteratively as follows: declare @reg_data table ( I int NOT NULL PRIMARY KEY IDENTITY, Y float ) declare @counter int, @numRows int ...
0
votes
1answer
102 views

iterative method for dense non-symmetric matrix

Can someone recommend a good iterative method that can be used to solve a dense non-symmetric linear system? From my understanding the bi-conjugate gradient method has an irregular convergence and ...
4
votes
3answers
8k views

Difference between agile and iterative and incremental development

What are the difference between Agile and iterative and incremental development? Is Agile considered as iterative and incremental? Some info shown the Agile is the latest of iterative and incremental. ...
2
votes
2answers
149 views

Make recursive function of for loops and if statements into iterative function

The challenge was to find all possible combinations of numbers less than N whose sum equals N. For instance, when N is equal to: 2 1+1 - 1 way 3 2+1 1+1+1 - 2 ways 4 3+1 2+2 2+1+1 1+1+1+1 - 4 ...
0
votes
0answers
36 views

Temp Table / Transform Query - Iterative Looping with Commit into a Results Table

When operating on millions of records (as in 50 Million), this procedure literally is taking over a day (lol). I need help to run the query faster and have no access to an expert SQL Mgmt Studio 2008 ...
2
votes
4answers
140 views

Is there a better performing functional version of this iterative algorithm in C#?

I was hoping to figure out a way to write the below in a functional style with extension functions. Ideally this functional style would perform well compared to the iterative/loop version. I'm ...
1
vote
1answer
248 views

I'm trying to make an iterative jQuery scrolling animation that scrolls through multiple instances of the same div class, pausing in between

The way this function will work: 1) The user clicks the button with ID "surf" and the animation begins 2) The function finds the first instance of div with class "threadboard," pauses there for 1.5 ...
5
votes
7answers
3k views

BST in-order-traversal, iterative, parent pointer, no visited flag, no stack

Is it possible to do an iterative in-order-traversal on a BST whose node has a parent pointer (the parent of the root is null) without using a visited flag or a stack? I googled and didn't find a ...
3
votes
2answers
279 views

parallel iterative algorithms for solving Linear System of Equations

Does someone know any library or ready source code of parallel implementation of quick iterative methods (bicgstab, CG, etc) for solving Linear System of Equations for example using MPI or OpenMP?
1
vote
2answers
94 views

Date comparion/consecutive date grouping

Im trying to write a function which identifies groups of dates, and measures the size of the group. The function will take a list of elements (the elements are individual lines from a CSV file with ...
0
votes
0answers
355 views

Generate Recursive XML using SQL Server 2005

I am attempting to have SQL Server build an XML document using data that is located in multiple tables. For instance my tables could look like this: TableKey | ParentKey | TableName | Fields ...
0
votes
4answers
140 views

cannot display the result of each one of my function

I wrote a code that computes the sum of components of an array which is randomly filled with values between 0 and 1. I have to write two functions, one is iterative, and the other one is recursive. ...
1
vote
1answer
131 views

What iterative sub-solvers, besides bicg, can i use for solving Newton equation in MATLAB?

I am trying to analyze the results for different iterative sub-solvers of the Newton equation system, using a Newton-Fischer reformulation of the LCP(linear complementarity problem). So far I have ...
1
vote
1answer
94 views

Eigenvalue update for small change in data

I am working on a problem which requires computing the eigenvalues of the sample covariance matrix. The issue is that the data changes as time goes on (hence the sample covariance matrix) and ...
0
votes
2answers
390 views

How to write iterative DFS which counts descendants of a node in a tree

I have problem with turning this code: void dfs(int i = 1) { static int preorder = 0; d[i].first = ++preorder; d[i].second = 1; for (list<int>::iterator it = tree[i].begin(); it != ...
1
vote
2answers
107 views

Converting a bunch of nested recursive functions to iterative funcs

I have read that it is in principle possible to convert a recursive function to an iterative function. I have some bunch of functions calling each other. I constructed the structure of the code ...
0
votes
2answers
118 views

Python--Two iterative loops not spitting out all correct answers

Can anyone tell me whats wrong with this code. It's supposed to list the combinations of boxes of nuggets (6,9, 20 piece) for a number of nuggets. However, some of the solutions are not being ...
0
votes
2answers
212 views

Ruby - Calling a method from a loop within another method

Here's the problem... I have a method that I'm calling to strip out characters and convert strings to floats. def convert_to_float(currency) return currency.gsub(/regex/, "").to_f end I have ...
1
vote
2answers
1k views

How to generate in PHP all combinations of items in multiple arrays

I'im trying to find all combinations of items in several arrays. The number of arrays is random (this can be 2, 3, 4, 5...). The number of elements in each array is random too... For exemple, I have ...
1
vote
2answers
396 views

Local File Search with iterative algorithm

I am working in a desktop application for windows using Java. In my application, there is a requirement to search all .php. To do this, here I use recursive methods. import java.io.File; public ...
0
votes
3answers
269 views

recursion to iteration

I am working in a desktop application for windows using Java. In my application, there is a requirement to search all .php. To do this, I use recursive methods. import java.io.File; public class ...

1 2