In functional programming, fold, also known variously as reduce, accumulate, compress, or inject, is a family of higher-order functions that iterate a function over a data structure to produce a summary value.

learn more… | top users | synonyms (2)

1
vote
1answer
67 views

I have an error when running my foldTree function

I want to write a treeFold function that takes: A function f of type 'a -> b -> a, A value x of type a, A Tree b named t, and returns a value of type a. The return value is computed by performing an ...
0
votes
2answers
35 views

Reduce left-fold in R

I am using the higher-order function to apply a function to every element in a vector and return the result as a scalar value. Suppose I have: v = c(0, 1, 2, 3, 4, 5, 6, 7, 8) I want to compute ...
0
votes
0answers
34 views

Coq - fold and maps on record types

I had previously posted problems like the following, but have not yet found a solution. I am having a store (mapping) from a record type (with five members) to a string value. A fold with a function ...
0
votes
1answer
127 views

haskell tree using fold operation

How would I go about writing a contains, balanced function given this definition using folds. data Tree a = Tree a [Tree a] treeFold :: (a -> [b] -> b) -> Tree a -> b treeContains :: Eq ...
3
votes
2answers
131 views

haskell fold operation on tree

data Tree a = Tree a [Tree a] Note that we do not allow empty trees, and that a leaf is a tree with an empty list of subtrees. treeFold :: (a -> [b] -> b) -> Tree a -> b treeFold f ...
3
votes
3answers
78 views

Using quickCheck

I wrote an implementation for foldl and wanted to check if it worked, I tried some cases and it seems to be working well but I want to make sure. I read about quickCheck and tried it, but I can't ...
4
votes
4answers
178 views

Currying Functions Erlang

I'm trying to redo all of my Haskell homework problems using Erlang, and one thing that gets me is how to use a list of functions that don't have all of their parameters. Example: I'm trying to use ...
3
votes
1answer
62 views

Correct use of a fold or reduce function to long-to-wide data in python or javascript?

Trying to learn to think like a functional programmer a little more---I'd like to transform a data set with what I think is either a fold or a reduce operation. In R, I would think of this as a ...
2
votes
1answer
397 views

Scala : fold vs foldLeft

I am trying to understand how fold and foldLeft and the respective reduce and reduceLeft work. I used fold and foldLeft as my example scala> val r = List((ArrayBuffer(1, 2, 3, 4),10)) scala> ...
0
votes
2answers
51 views

R, iterating over the row vectors of a matrix

I have some vector vect and I want to iterate over the row vectors vof a matrix and calculate: cov(v, vect). I tried: for(vect in mat2) #where mat2 is a 215 by 31 matrix However, each ...
3
votes
3answers
170 views

Implementing take using foldr

This is my take version using foldl: myTake n list = foldr step [] list where step x y | (length y) < n = x : y | otherwise = y main = do print $ ...
0
votes
2answers
88 views

Scala: Is operator foldl infix?

Looking at code with foldl it is hard to understand its syntax, for example: def lstToMap(lst:List[(String,Int)], map: Map[String, Int] ):Map[String, Int] = { (map /: lst) (addToMap) } Is ...
0
votes
4answers
90 views

Scala: using foldl to add pairs from list to a map?

I am trying to add pairs from list to a map using foldl. I get the following error: "missing arguments for method /: in trait TraversableOnce; follow this method with `_' if you want to treat it as a ...
1
vote
1answer
85 views

Foldr issues (Haskell)

I'm trying to convert from a table which is of type ([Char, Int]) to a string tab2str :: Table -> String (that follows some specific formatting patterns.) I'm using foldr (as the title implies) ...
1
vote
1answer
192 views

Combining foldl and foldr

I've figured out myself that foldl (or foldl') is the best approach when you want to produce summarise a list into one result (i.e. sum), and foldr is the best approach when you want to produce ...
1
vote
0answers
72 views

Optimal packing for a box layout

I was making a cutout from a piece of cardboard to make a box with legs. You can describe the sizes of each section with a model laid out in a plane as seen here: ...
2
votes
1answer
53 views

Generalized fold for inductive datatypes in coq

I've found myself repeating a pattern over and over again, and I'd like to abstract it. I'm fairly confident that coq is sufficiently expressive to capture the pattern, but I'm having a bit of ...
1
vote
3answers
153 views

How do I apply a function to foldr? [Haskell]

This is a relatively simple haskell question but I am having alot of trouble with. I'm trying to apply this function 'add' to convert a list of strings into a BST. (The add function simply inserts a ...
2
votes
3answers
51 views

how to yank a code block without folded content?

I write a blog that describe the fold of vim. So I need the code like this. +-- 15 lines: set_up_socket_dir () {-------------------------------------------- But when I yank the line, actually yank ...
1
vote
1answer
124 views

Stack space overflow with the ST monad

The following short haskell program is intended to count a list of items from a file. The version using foldl' works fine, but the version using the ST Monad gives a stack space overflow message. ...
0
votes
1answer
106 views

Scala assumes wrong type when using foldLeft

I am trying to create a cross product function in Scala, where k is the number of times I build the cross product. val l = List(List(1), List(2), List(3)) (1 to k).foldLeft[List[List[Int]]](l) { ...
1
vote
1answer
56 views

ocaml lcs without objects like Array

How can I find the longest common subsequence without using Arrays and only List folds in ocaml
-1
votes
1answer
112 views

OCaml find the mode of a list [closed]

So here is the question. Say I have a list [1;2;2;3;3;3] I want to find the mode of it, which is 3. There is one restriction about it : rec is prohibited, and List.fold_left or List.fold_right has ...
3
votes
3answers
158 views

map . foldr function composition - Haskell

So, let's straight to the point. :t (map.foldr) (map.foldr) :: (a1 -> a -> a) -> [a] -> [[a1] -> a] What is [[a1] -> a]? I'm really trying to understand this composition, so I was ...
0
votes
2answers
162 views

foldl operation in SML

I perform the following foldl operation foldl (fn (acc,y) => if acc>y then acc else y+1) 0 [1,3] So, I expect this to produce me an result of 4 but it produces an output of 3. What am I ...
-1
votes
1answer
116 views

SML currying ( functional prog)?

I asked this question a few days ago but now I have more understanding on the subject. But I still get problem that operator and operand dont agree: Using ListPair.foldr I need to create a function ...
8
votes
3answers
247 views

foldl . foldr function composition - Haskell

So, I'm really frying my brain trying do understand the foldl.foldr composition. Here is a example: (foldl.foldr) (+) 1 [[1,2,3],[4,5,6]] The result is 22, but what's really happening here? To me ...
1
vote
3answers
124 views

foldl and IO values

I have such code: foldl (\a x -> a ++ (f x)) [] list All seems to be ok, but (f x) :: IO [String], and (++) gives an error ([String] != IO [String]). How to define empty IO[String] list? I ...
0
votes
4answers
104 views

Duplicates removal with foldl

I'm trying to write my implementation of remdps, function, which removes nearest duplicates in a list. For example: "aaabbbsscaa" should became "absca". I have to use foldl. Here is my attempt: ...
4
votes
4answers
282 views

Interleave List of Lists in Haskell

I was wondering how could I write a function in Haskell that interleaves a list of lists into a single lists, for example, if I had a function called interleavelists :: [[a]] -> [a] it should be ...
1
vote
1answer
77 views

fold that produces a tuple (avoiding multiple traversals of the input)

I have a list and want to use this to produce three lists. I can do this with two applications of filter: val z_out = zs.filter(p1) val z_in = zs.filter(p2) val z_split = zs.diff(z_out union z_in) ...
2
votes
2answers
165 views

In Scala, how to foldleft when sometimes two elements should not turn into one element?

I have a list of Pair's which represent lines with a start index and end index. The type is (Int,Int) being a tuple of two integers. Now I wish to join together any lines which are touching each ...
4
votes
1answer
313 views

How to fold if/else sub blocks in eclipse

Though I have looked at these two questions, fold sub blocks and manually fold code. But it doesnt seems to work, because either the links are broken or some of the resources are unavailable. In my ...
0
votes
1answer
218 views

Isotope folded (elements overlap)

I have been reading stack overflow for a solution but can't find it. (full size image at http://i.imgur.com/hrcDg.png) When I load the page it looks like that Here is the site (beta) ...
1
vote
2answers
122 views

Gvim fold toggle using mouse

Is it possible to open and close folds in Gvim using mouse clicks ? Say double click opens and closes folds ?
1
vote
2answers
113 views

Finding permutations with foldl/map?

The professor showed us a drawn-out method to find all permutations of a list, i.e. (a b c) => ((a b c) (a c b) (b a c) (b c a) (c b a) (c a b)), but she said it could be done much more efficiently ...
2
votes
5answers
258 views

Haskell: foldr vs foldr1

If I have this insert function: insert x [] = [x] insert x (h:t) | x <= h = x:(h:t) | otherwise = h:(insert x t) this produces a sorted list: foldr insert [] [1,19,-2,7,43] but ...
2
votes
3answers
95 views

Sum of elements in a list at the same position

How can I do the sum of elements in a list at the same position? For example: [[2,3,4],[5,6,7],[8,9,10]]=[15,18,21] Thanks
-3
votes
1answer
53 views

pp not working on ruby file [closed]

How do I get pp to wrap (limit) the line lengths to 79 characters as the pp documentation says? The following example demonstrates that pp does not limit the output to default length 79 as stated in ...
7
votes
2answers
333 views

Haskell repa - how to reduce array and return index?

In GNU Octave this code - [e, ix] = min(X); will return minimum element and it's location. How do you this in repa for arbitrary binary function? This is what I came up with: min x = z $ foldl' f ...
6
votes
2answers
230 views

Haskell - strict vs non-strict with foldl

I have a question concerning the definition of strict vs non-strict. The Haskell wiki-book for Laziness (http://en.wikibooks.org/wiki/Haskell/Laziness), under the section "Black-box strictness ...
2
votes
1answer
118 views

SML| foldl with if

I'm having this exercise which asks to count how many values in a boolean list are true. I typed this: fun countt xs = foldl (fn (x,y) => if x=true then y=y+1) 0 xs; which, apparently, is ...
2
votes
2answers
105 views

Type variance error in Scala when doing a foldLeft over Traversable views

I am trying concatenate a series of Traversable views in Scala using a foldLeft operator and am hitting type variance errors that I don't understand. I can use reduce to concatenate a list of ...
5
votes
2answers
131 views

type inference in fold left one-liner?

I was trying to reverse a List of Integers as follows: List(1,2,3,4).foldLeft(List[Int]()){(a,b) => b::a} My question is that is there a way to specify the seed to be some List[_] where the _ is ...
4
votes
4answers
142 views

What is the optimum way to fold a function's arguments?

I have a function f that can be called with arbitrary arguments. When it is called with 2 arguments, it performs an operation. When it is called with >2 arguments, it must itself fold the others. That ...
1
vote
3answers
124 views

writing a recursive function using foldr

I am new in Haskell programming. While practicing I was asked to make a recursive function that looks like this: repeat1 5 [1,2,3] = [[1,2,3],[1,2,3],[1,2,3],[1,2,3],[1,2,3]] which is repeat1 ...
0
votes
1answer
239 views

Finding max element in a list in SML

I am trying to find the the greatest value in a list using Standard ML. I need to use the given fold function: fun fold f [] base = base | fold f (x::xs) base = fold f xs (f x base); Here is ...
1
vote
1answer
66 views

haskell scanl tuple

I have a list of tuples: myList = [(1,1000), (2,2000), (3,3000),(4,4000] And I would like to process this list so that the first element of each tuple remains the same and the second element is a ...
1
vote
1answer
672 views

Scala - foldLeft type inference fail

In my code, I have the following: type Occurrences = List[(Char, Int)] def subtract(x: Occurrences, y: Occurrences): Occurrences = { val yMap = y.toMap x foldLeft (List[(Char, Int)]()) { ...
1
vote
5answers
511 views

fold div on click

I want to fold down the div onclick event and on another click want to fold up the div my jquery is following $(".fold_reply").click(function() { if ($('.reply').css('display', 'none')) { ...

1 2 3 4