Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
10answers
1k views

Code Golf: Easter Spiral

What's more appropriate than a Spiral for Easter Code Golf sessions? Well, I guess almost anything. The Challenge The shortest code by character count to display a nice ASCII Spiral made of ...
17
votes
7answers
3k views

Looping in a spiral

A friend was in need of an algorithm that would let him loop through the elements of an NxM matrix (N and M are odd). I came up with a solution, but I wanted to see if my fellow SO'ers could come up ...
6
votes
1answer
63 views

Iterate over 2d array in an expanding circular spiral

Given an n by n matrix M, at row i and column j, I'd like to iterate over all the neighboring values in a circular spiral. The point of doing this is to test some function, f, which depends on M, to ...
6
votes
3answers
244 views

Matrix and algorithm “spiral”

i wanted ask if there some algorithm ready, that allowed me to do this: i have a matrix m (col) x n (row) with m x n elements. I want give position to this element starting from center and rotating ...
4
votes
2answers
548 views

Algorithm to solve the points of a evenly-distributed / even-gaps spiral?

First, just to give a visual idea of what I'm after, here's the closest result (yet not exactly what I'm after) image that I've found: http://www.mathematische-basteleien.de/spiral17.gif Entire ...
4
votes
5answers
208 views

Generate lazy “spiral” in Scala

Task: For a given position in 2D array generate list of surrounding positions located in radius. For example: input: (1, 1) radius: 1 output: ( (0, 0), (1, 0), (2, 0), (0, 1), (2, ...
4
votes
4answers
216 views

Varying Colors in Processing

I've been working on porting some of my Processing code over to regular Java in NetBeans. So far so well, most everything works great, except for when I go to use non-grayscale colors. I have a ...
3
votes
3answers
91 views

Using spiral rule in command line argument

what is the difference between the below declarations? char *argv[]; and char *(argv[]); I think it is same according to spiral rule.
2
votes
1answer
971 views

Traverse 2D Array in Spiral pattern using recursion

I am preparing for an interview and have been stuck on this question for quite some time now. Could anybody please help me with the code. If not complete then may be a snippet of it? Please..
1
vote
1answer
31 views

Image Spiral Pixel Search

I'm trying to figure out how to do a pixel (color) search from the center and out, in a spiral shape.. Not like the normal "left to right pixel search". So far i've made some simple x-y searches. ...
1
vote
1answer
171 views

PHP Spiral with numbers 0 to 9 [closed]

I am searching for someone who could write me a script to output the following pattern: its starting with 0 in the center, then 1 to the left, 2 down, 3 right...you get the idea. - its always 0 to ...
1
vote
2answers
236 views

jQuery spiral animation

I recently encountered a jQuery spiral plugin. However, it doesn't seem to be working, and I'm not sure why. I've made a fiddle: http://jsfiddle.net/thugsb/svT2Z/2/ The plugin was only made back in ...
1
vote
2answers
217 views

rendering an antialiased spiral

I have looked at this example using php and GD to piecewise-render a spiral with small arcs. What I would like to do is render an approximation to a spiral that is as mathematically accurate as ...
1
vote
2answers
738 views

What is the algorithm for storing the pixels in a spiral in JS?

What is the algorithm for storing the pixels in a spiral in JS?
0
votes
2answers
189 views

print 2-D array in spiral order [closed]

Possible Duplicate: Pattern consisting of numbers moving in clockwise direction around a rectangular shape (length and breadth decreasing each time) How to print a 2 dimensional array in ...
0
votes
2answers
210 views

Spiral Graph in R

How to create a spiral graph in R? Is there any package for this kind of analysis? Or is there any other way to visualize time oriented data (regarding periodicity)?
0
votes
0answers
268 views

need to figure out something with spiral model (SDLC)

i am going to develop a web based system (for my educational project). in this case i need to know if can i use DFDs and ER diagram in spiral model. i am little bit confused there. what i am going to ...
0
votes
1answer
2k views

difference between agile model and spiral model

Can anyone explain me the differences between the spiral and agile models in simple terms as I am beginner?? Can you give me some real world egs. where spiral is more useful than agile and ...
0
votes
4answers
4k views

2d Array in Spiral Order

I'm trying to fill an array in spiral order. So far, I can print the array in spiral order, but is there a way to modify the array so that i can fill it in spiral order and then just print the array? ...
-1
votes
1answer
2k views

Spiral Vs. (Throw away Prototype Vs. Evolutionary Prototype) - Software Development Life Cycle

What is the difference between Spiral Model and Prototype model in software engineering. and also state some difference between Throwaway and Evolutionary prototyping.
-1
votes
2answers
607 views

PHP script to draw a spiral?

Does anybody have a PHP (or other language) script for drawing a spiral. A simple (Archimedean spiral) would be just fine. Of course the principle is simple but coding it in SVG or GD would take some ...
-2
votes
2answers
547 views

grid traversal question [closed]

Possible Duplicate: Looping in a spiral Given a grid of any height and width, write an algorithm to traverse it in a spiral. (Starting at the top left and ending in the middle) without ...