Tagged Questions

Flattening refers to either reducing a multi-dimensional array to a single dimension or to reducing a class and class methods to handle based function calls.

learn more… | top users | synonyms

15
votes
4answers
176 views

How to flatten a list to a list without coercion?

I am trying to achieve the functionality similar to unlist, with the exception that types are not coerced to a vector, but the list with preserved types is returned instead. For instance: ...
12
votes
5answers
351 views

Un-optioning an optioned Option

Say I have a val s: Option[Option[String]]. It can thus have the following values: Some(Some("foo")) Some(None) None I want to reduce it so that the first becomes Some("foo") while the two others ...
11
votes
4answers
281 views

How to flatten array in jQuery?

How to simply flatten array in jQuery? I have: [1, 2, [3, 4], [5, 6], 7] And want: [1, 2, 3, 4, 5, 6, 7]
8
votes
1answer
423 views

Flattening an Iterable<Iterable<T>> in Guava

Is there a flatten method in Guava - or an easy way to convert an Iterable<Iterable<T>> to an Iterable<T>? What I have is a Multimap<K, V> [sourceMultimap] and I want to ...
8
votes
7answers
2k views

How can I “merge”, “flatten” or “pivot” results from a query which returns multiple rows into a single result?

I have a simple query over a table, which returns results like the following: id id_type id_ref 2702 5 31 2702 16 14 2702 17 3 2702 40 1 2703 23 4 2703 23 ...
7
votes
5answers
4k views

How to Flatten a Multidimensional Array?

Is it possible, in PHP, to flatten a (bi/multi)dimensional array without using recursion or references? I'm only interested in the values so the keys can be ignored, I'm thinking in the lines of ...
7
votes
2answers
4k views

Flattening one-to-many relationship in Django

I have a few model classes with basic one-to-many relationships. For example, a book has many recipes, and each recipe has many ingredients: class Book(models.Model): name = ...
6
votes
4answers
811 views

Erlang : flattening a list of strings

I have a list like this: [["str1","str2"],["str3","str4"],["str5","str6"]] And I need to convert it to ["str1", "str2", "str3", "str4", "str5", "str6"] How do I do this? The problem is that ...
5
votes
3answers
2k views

Flatten FDF / XFDF forms to PDF in PHP with utf-8 characters

My scenario: A PDF template with formfields: template.pdf An XFDF file that contains the data to be filled in: fieldData.xfdf Now I need to have these to files combined & flattened. pdftk does ...
5
votes
4answers
2k views

How to flatten a List of different types in Scala?

I have 4 elements:List[List[Object]] (Objects are different in each element) that I want to zip so that I can have a List[List[obj1],List[obj2],List[obj3],List[obj4]] I tried to zip them and I ...
5
votes
2answers
2k views

How to 'Flatten' multiple UIImageViews into ONE?

I have a feeling this is not an easy task but I need to combine or flatten a UIImageView with another UIImage view lying above it. For example: I have two UIImageViews. One of them has a UIImage of a ...
4
votes
1answer
436 views

Haskell FlatMap

I am a beginner interested in Haskell, and I have been trying to implement the flatmap (>>=) on my own to better understand it. Currently I have flatmap :: (t -> a) -> [t] -> [a] flatmap ...
3
votes
2answers
85 views

Using LINQ to flatten lists while capturing the index

I have a List<List<List<Foo>>> and I would like to flatten this to List<new {Foo, Ndx}> where Ndx is the index from the outermost List. For example, if I had something like: ...
3
votes
3answers
96 views

Flattening a Map to varargs String list in Scala

A Java event logging (analytics) library has a method that takes an event name and then varargs list of Strings like this: Analytics.event("my event name", "key1", "value1", "key2", "value2" ...) ...
3
votes
2answers
94 views

How do I remove surrounding parentheses in a nested list in Scheme if that nested list has 1 element?

Say I have the list: (a b ((c)) (d + e) ((e + f)) (g) () h) How do I get the following list (preferably with a function):(a b c (d + e) (e + f) g h) In other words: If the nested list has only ...
3
votes
1answer
61 views

Lists conversion

I am newbie to prolog and I am trying to flatten a list which is like this: X = [[[0,0,1],[1,0,2]],[[0,1,3],[0,2,2]],[[0,3,5],[0,4,4]],[[0,5,4],[0,6,5]]] The desired output is: X = ...
3
votes
1answer
197 views

A better way to use AutoMapper to flatten nested objects?

I have been flattening domain objects into DTOs as shown in the example below: public class Root { public string AParentProperty { get; set; } public Nested TheNestedClass { get; set; } } ...
3
votes
6answers
526 views

Flatten a javascript object to pass as querystring

I have a javascript object that I need to flatten into a string so that I can pass as querystring, how would I do that? i.e: { cost: 12345, insertBy: 'testUser' } would become ...
3
votes
2answers
2k views

How to Serialize Binary Tree

I went to an interview today where I was asked to serialize a binary tree. I implemented an array-based approach where the children of node i (numbering in level-order traversal) were at the 2*i index ...
3
votes
4answers
3k views

Flatten Adjacency List Hierarchy To A List Of All Paths

I have a Table that stores Hierarchical information using the Adjacency List model. (uses a self referential key - example below. This Table may look familiar): category_id name ...
2
votes
1answer
20 views

Flatten a list in Prolog

I've only been working with Prolog for a couple days. I understand some things but this is really confusing me. I'm suppose to write a function that takes a list and flattens it. i.e. - flatten([a, ...
2
votes
2answers
139 views

XML shredding via XSLT in Java

I need to transform large XML files that have a nested (hierarchical) structure of the form <Root> Flat XML Hierarchical XML (multiple blocks, some repetitive) Flat XML </Root> ...
2
votes
3answers
274 views

How to “flatten” or “index” 3D-array in 1D array?

I am trying to flatten 3D array into 1D array for "chunk" system in my game. It's a 3D-block game and basicly I want the chunk system to be almost identical to Minecraft's system ( however, this isn't ...
2
votes
2answers
112 views

Flatten Array: Keep index, value equal to position in array

I've been having a little trouble trying to flatten arrays in a specific way. Here is a print_r view of the array I want to flatten: Array ( [1] => Array ( ...
2
votes
2answers
282 views

Perl: What is the easiest way to flatten a multidimensional array?

What's the easiest way to flatten a multidimensional array ?
2
votes
1answer
93 views

too many fields to specify in result set of join

So similar questions have been asked with not much of an answer.... I have a Stats Table related to a Branch table. The Stats records contain pc stats of a particular bank branch. Branch +Code +Name ...
2
votes
2answers
901 views

Flattening XSD schema documents (HR-XML 3.0)

I have several "main" XSD documents, which import "supporting" XSD documents. These schema documents happen to be from the HR-XML 3.0 specification, in particular related to Background Screening. For ...
2
votes
4answers
100 views

Is there a built in way to get an array out of multi dim array in PHP?

(Very useful when querying DB). If I have a multy dim array [['id'=>1],['id'=>2],['id'=>34],['id'=>67]] and what I want is [1,2,34,67] I know how to do it in code, just asking if ...
1
vote
2answers
59 views

How to flatten (reshape to 1D) an array of arbitrary dimension in Labview

Let A be an array of arbitrary dimension (2 or 3 in my case). How can I flatten (reshape to 1D) this array without knowing in advance the number of dimensions ? If I knew the number of dimensions, I ...
1
vote
2answers
19 views

Flattening image layers

I am working on a basic image editing tool with support for layers, and I need to know how to merge the layers into a single image. Obviously, if the pixels have no alpha value, then whichever is on ...
1
vote
1answer
68 views

Flatten multidimensional associative array to one one-dimensional array of references in PHP

Given I have an array: $array = array( 'a' => array( 'b' => array( 'c' => 'hello', ), ), 'd' => array( 'e' => array( 'f' ...
1
vote
2answers
126 views

how to flatten multidimensional array containing objects in javascript

I have an multidimensional array with objects in it..How can I flatten it myarr[0] =[{"name":"john","age":"50","location":"san diego"} ,{"name":"jane","age":"25","location":"new york"} ...
1
vote
0answers
114 views

Flatten list of lists in Python with non-iterable types? [closed]

Possible Duplicate: Flatten (an irregular) list of lists in Python I've seen quite a few 'How to flatten list of lists' questions on SO, but I'm still having trouble with my problem. I have ...
1
vote
1answer
152 views

Save List as Strings with Java XML Annotations

I need to save some variables in a simple class using Java's XML Annotations: http://download.oracle.com/javase/6/docs/api/javax/xml/bind/annotation/package-summary.html Currently the class is pretty ...
1
vote
2answers
123 views

Why My Flatten Shader (from Lighthouse3d Tutorial) Is Not Working?

I am new to GLSL. So, I am going through a tutorial on the Web. The tutorial has an example called the Flatten Shader, which displays the GLUT teapot as a flatten teapot. Here is the link to the ...
1
vote
0answers
230 views

Using python ctypes to wrap flattened c++ class method returning union pointer

I'm writing a python wrapper for a C++ DLL using ctypes. I've "flattened" the C++ Class to handle based C functions, and most of them are working well. There are a few weird functions in the class ...
1
vote
2answers
315 views

flatten from mathematica to matlab

how can i write this command from mathematica to matlab? total = Apply[Plus, Flatten[mlat]]/L2 ,where L2 is a value and mlat a matrix.
1
vote
1answer
82 views

xslt, how to 'flatten' the tag structure for unknown number of child tags

My source file looks like this: <x> <names> <name>name1</name> <name>name2</name> </names> <codes> ...
1
vote
2answers
146 views

Erlang un-zip-flatten

I have a list of items that I would like to "un-zip-flatten". Basically what that means is that if I have a list of items: [a, b, c, d, e, f, g] I want to turn it into a list of lists like the ...
1
vote
2answers
392 views

F# - Flatten List/Range

I'm new to F# and am wondering how I would go about flattening a list. Essentially in the database I store a record with a min_age and max_age range (this is a fictitious example for the sake of ...
1
vote
2answers
345 views

how to do a “flat push” in javascript?

I want to push all individual elements of a source array onto a target array, tartget.push(source); puts just source's reference on the target list. In stead I want to do: for ...
1
vote
2answers
314 views

Oracle 10g - flatten relational data dynamically

I am using Oracle 10g. and I have the following relational structure that I think I need to flatten out so on the client side a grid view shows the correct number of columns. TableA below can be ...
1
vote
1answer
116 views

How do I convert a list of objects to a list of integers using AutoMapper?

I have a Student object: public class Student { public int Id { get; set; } public string FirstName { get; set; } public string LastName { get; set; } } And a Classroom object: public ...
1
vote
4answers
135 views

Python: flatten function works in console but not in file?

I'm doing an exercise to flatten nested lists. The code works in console but it doesn't work when its in a file. I have no idea what's going on. :( def flatten(nested): """ ...
1
vote
3answers
423 views

Append number to filenames when flattening directory structure on Linux

I have a directory structure that looks like this: /a/f.xml /b/f.xml /c/f.xml /d/f.xml What I want to do is copy all the xml files into one directory like this: /e/f_0.xml /e/f_1.xml /e/f_2.xml ...
1
vote
3answers
449 views

SQL flattening & dynamic query question

Firstly, I am not certain this is the best way to handle this AT ALL ... totally open to alternative solutions. Secondly, I feel like I'm missing the obvious ... but I'm still missing it so not to ...
1
vote
1answer
686 views

Flatten PDFs in PHP?

I wondered if it was possible to flatten PDFs using PHP? I use fpdf to create and collate from a collection of PDFs however when php has processed it some information is missing such as the comments. ...
0
votes
1answer
84 views

This erlang code throws an exception and I don't know why

I'm using a Windows certification authority (AD CS) to issue certificates for the participants in a secure connection between a RabbitMQ Windows service and a client. The Subject of my client ...
0
votes
0answers
54 views

CCNode-visit-function copied CCSprite got a dark edge

I've got a question about the [visit] function of CCNode The original image is good with clear outline, nothing special, it composes of 5 leaves sprites inside. SCREEN CAPTURE : Then I want to ...
0
votes
1answer
68 views

Extreme XSLT XML Flattening

I have the following input XML file: <root> <a> <b>1</b> </a> <c> <d> <e>2</e> <f>3</f> or <e>3</e> ...

1 2