Tagged Questions

0
votes
3answers
98 views

python reduce error?

The following is my python code: >>> item = 1 >>> a = [] >>> a.append((1,2,3)) >>> a.append((7,2,4)) >>> sums=reduce(lambda x:abs(item …
5
votes
2answers
131 views

“unfold” for common lisp?

I learned quite a bit of scheme from SICP but am more interested in common lisp now. I know common lisp's fold is reduce, with special arguments for left or right folding, but what …
1
vote
3answers
372 views

How to reduce swf filesize flex

how can i reduce the file size of my flex application. its around 900kb .
0
votes
5answers
152 views

Make 1d Array from 1st member of each value in 2d Array | PHP

How can you do this? My code seen here doesn't work for($i=0;i<count($cond);$i++){ $cond[$i] = $cond[$i][0]; }
1
vote
1answer
54 views

reduce list in Specman like in Python

Is there a reduce() list method in Specman that I can use for general reduction functions? I'm thinking of something like: var x: list of bit = some_function_that_returns_list_of …
3
votes
2answers
249 views

Where is the “Fold” LINQ Extension Method?

I found in MSDN's Linq samples a neat method called Fold() that I want to use. Their example: double[] doubles = { 1.7, 2.3, 1.9, 4.1, 2.9 }; double product = doubles.Fold …
0
votes
1answer
87 views

Lapack’s row reduction

Hello! I am trying to write a function that produces a single solution to an underrepresented system of equations (e.g. the matrix that describes the system is wider than it is ta …
5
votes
4answers
540 views

Does OCaml have general map()/reduce() functions?

In Python map() works on any data that follows the sequence protocol. It does The Right Thing^TM whether I feed it a string or a list or even a tuple. Can't I have my cake in OCa …
4
votes
5answers
327 views

Parallelizing the “Reduce” in “MapReduce”

I understand how Map is easily parallelizable - each computer/CPU can just operate on a small portion of the array. Is Reduce/foldl parallelizable? It seems like each computation …
1
vote
0answers
164 views

What are powerful attributes of Python that you think most Python developers don’t know about? [closed]

Learning Python is a lot like learning to use vim in my opinion. There's so much to it that it's hard to learn it all very quickly. Sometimes, just like with vim, I see something n …
7
votes
5answers
438 views

How do you or together all values of a list in Python?

How do you or together all values of a list in Python? I'm thinking something like: or([True, True, False]) or if it was possible: reduce(or, [True, True, False])
1
vote
6answers
428 views

Color reduction (in Java)

Hi! I would like to find a way to take JPEG (or GIF/PNG) images and reduce the amount of colors to e.g. 20. Could someone recommend some library or other reference? Also source co …
4
votes
2answers
321 views

Is there a type-safe Java implementation of ‘reduce’?

I often need to run reduce (also called foldl / foldr, depending on your contexts) in java to aggregate elements of an Itterable. Reduce takes a collection/iterable/etc, a funct …
2
votes
5answers
562 views

Mapping values from two array in Ruby

I'm wondering if there's a way to do what I can do below with Python, in Ruby: sum = reduce(lambda x, y: x + y, map(lambda x, y: x * y, weights, data)) I have two arrays of e …