Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
154 views

Scheme / Racket Best Practice - Recursion vs Variable Accumulation

I'm new to Scheme (via Racket) and (to a lesser extent) functional programming, and could use some advise on the pros and cons of accumulation via variables vs recursion. For the purposes of this ...
7
votes
3answers
677 views

Is it possible to use boost accumulators with vectors?

I wanted to use boost accumulators to calculate statistics of a variable that is a vector. Is there a simple way to do this. I think it's not possible to use the dumbest thing: using namespace ...
5
votes
2answers
2k views

SQLite: accumulator (sum) column in a SELECT statement

I have a table like this one: SELECT value FROM table; value 1 3 13 1 5 I would like to add an accumulator column, so that I have this result: value accumulated 1 1 3 4 13 17 1 ...
4
votes
3answers
358 views

Python 3.2 - readline() is skipping lines in source file

I have a .txt file that I created with multiple lines. when I run a for loop, with a count accumulator, it skips lines. It skips the top line, and starts with the second, prints the fourth, the ...
2
votes
7answers
1k views

Write a method to print out a string “Name” multiple times

I am answering a question for an Intro to Programming class and cannot - after reading through my notes, Big Java book, and looking online - find out where to begin. It seems as though it should be ...
2
votes
2answers
250 views

Problem with accumulators in prolog

While learning Prolog, I'm trying to solve the following problem, using accumulators: Write a predicate addone2/ whose first argument is a list of integers, and whose second argument is the list ...
2
votes
2answers
396 views

Statistical accumulator in Python

An statistical accumulator allows one to perform incremental calculations. For instance, for computing the arithmetic mean of a stream of numbers given at arbitrary times one could make an object ...
2
votes
3answers
292 views

Accumulator generator in F#

In my quest to learn more F#, I tried to implement an "accumulator generator" as described by Paul Graham here. My best solution so far is completely dynamically typed: open System let acc ...
2
votes
4answers
126 views

What is the 'accumulator' in HQ9+?

I was just reading a bit about the HQ9+ programming language ( http://esolangs.org/wiki/HQ9 , http://en.wikipedia.org/wiki/HQ9%2B and http://www.cliff.biffle.org/esoterica/hq9plus.html ), and it ...
1
vote
1answer
101 views

Prolog what are Accumulators and the \+member function

I've been searching around for tutorials on what accumulators are and what they do, however all the explainations seems to be very overcomplicated and don't really give me a clear enough picture of ...
1
vote
3answers
139 views

Haskell: Add Function Output to List Until Certain Length

I want to write a function which takes a list and constructs a subset of that list of a certain length based on the output of a function. If I were simply interested in the first 50 elements of the ...
1
vote
2answers
88 views

Three Dimensional Hough Space

Im searching for radius and the center coordinates of circle in a image. have already tried 2D Hough transform. but my circle radius is also a unknown. Im still a beginner to Computer vision so need ...
1
vote
2answers
84 views

Is it safe to reference the accumulator during a for loop?

Is there a correct way to reference the output of an for loop in CoffeeScript. It seems that using the internal variable _results works some of the time, but it does work in some situations (shown ...
1
vote
1answer
105 views

Using boost.accumulators to count objects that have a certain attribute set to a value

Here's a snippet of code setting the context to my question (this is C++) enum Gender { Gender_MALE, Gender_FEMALE, Gender_UNKNOWN }; enum Age { Age_CHILD, Age_ADULT, Age_SENIOR, Age_UNKNOWN }; ...
1
vote
2answers
110 views

for_each weird behaviour

I don't use the STL much and I'm wanting to start learning it, so I made a really simple program using the STL's for_each function. Here is the entire program (minus header files): class Object { ...
1
vote
1answer
190 views

Prolog, triangular numbers, accumulators and tail recursion

I'm working on a homework assignment, consisting of 2 parts. The first is to write a Prolog program that checks if a certain pair X, Y belongs to a http://en.wikipedia.org/wiki/Triangular_number. For ...
0
votes
3answers
109 views

Prolog - Help fixing a rule

I have a database full of facts such as: overground(newcrossgate,brockley,2). overground(brockley,honoroakpark,3). overground(honoroakpark,foresthill,3). overground(foresthill,sydenham,2). ...
0
votes
2answers
76 views

Implementing an Accumulator in VHDL

I am trying to implement a signed accumulator using Core Gen in Xilinx. According to my understanding an accumulator performs the function of a normal register which is just routing the input to the ...
0
votes
1answer
89 views

Set value in array - Prolog

I have some rule which set_value_in_array. He is repalce value in Array[J] by Val. set_value_in_array([], _, _, _, _). set_value_in_array([Head | Array], Val, J, AccJ, NewArray) :- AccJ = J, ...
0
votes
1answer
70 views

How do I use/access a user argument in a boost accumulator?

I have the gist of a custom accumulator. I want to know how to get an integer argument from the "argument pack", or if this is even possible: namespace boost { namespace accumulators { namespace impl ...
0
votes
0answers
104 views

Accumulator function in Emgu CV “Acc”

when calling Acc function an exception {"openCv:"} is thrown ... any help ?!! maxX = f1.Width; maxY = f1.Height; f2 = f2.Resize(maxX, maxY, ...
0
votes
2answers
199 views

Problem with a function in Python 2.5 - what the argument should be; if an “if” statement is appropriate; making an accumulator work

I would appreciate help on this code. I'm trying to get a function to print results. The program takes random numbers and determines whether they are even or odd. That works. It is supposed to ...
0
votes
1answer
121 views

accumulators don't compile

HI All I am using boost accumulators. These 2 lines use to work fine with current version of boost in LInux. accumulator_set< double, stats< tag::covariance<double, tag::covariate1> ...