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

1
vote
1answer
21 views

Regex flatten usage

I am using regex to extract a value from a variable. The output comes in this format: [["\"XXX.YYY\""]] So, I use flatten & it gives me this output: ["\"XXX.YYY\""] How can I extract only ...
0
votes
0answers
26 views

Javascript flattens array

After a (jquery) ajax request, I am trying to respond by sending an array that looks something like : alist = [1,2,[3,4],[5,6]] using json.dumps(alist). However, if I use alert() to print out the ...
0
votes
2answers
35 views

Flatten Nested Array to a certain Key

I have a data structure like this Array ( [0] => Array ( [actionResult] => Array ( [show_page] => Array ( ...
0
votes
1answer
14 views

How to get the last non empty value of a hierarchy?

I've got a hierarchy with the appropriate value linked to each level, let's say : A 100 A1 NULL A2 NULL B B1 NULL B2 1000 ...
2
votes
2answers
67 views

Ruby: What is destructive?

I know that ruby has many methods, especially on array or array like objects, for example sort or flatten. However, these methods also have a twin (the one with an exclamation mark) like sort! and ...
-1
votes
1answer
99 views

Flatten a nested hash in Ruby on Rails

I have a hash in the structure below { "Result": [ { "Links": [ { "UrlTo": "http://www.example.com/", "Visited": ...
4
votes
3answers
87 views

Search a list of nested tuples of strings in python

Lets say I have a list x: x=['alfa[1]', 'bravo', ('charlie[7]', 'delta[2]'), 'echo[3]'] I want to create a new list which both flattens and removes the bracketed number if the item has one. The ...
0
votes
1answer
29 views

Automapper flatten with derived type properties

I'm using an automapper to flatten the object coming from WS. Simplified model would be as follows: public abstract class AOrder { public Product Product {get;set;} public decimal Amount ...
1
vote
2answers
51 views

Tcl flatten list of negative numbers

I am tring to flatten the following type of tcl lists: -1587.500000 {} 1587.500000 or 15.78 18.56 {} {} {} {} 15.6 So I try: [struct::list flatten -full $lineToFlatten] But when ...
0
votes
1answer
75 views

Flattening a 3D array in c++ for use with MPI

Can anyone help with the general format for flattening a 3D array using MPI? I think I can get the array 1 dimensional just by using (i+xlength*j+xlength*ylength*k), but then I have trouble using ...
0
votes
0answers
38 views

Flatten multiple M-to-N in MySQL or go documental?

. . I am refactoring an old MySQL database for a project. We have a products table (some 20k rows and it will possibly grow to 40k or a little more) and different types of categorization (currently 4 ...
3
votes
4answers
132 views

Python 3 replacement for deprecated compiler.ast flatten function

What's the recommended way to flatten nested lists since the deprecation of the compiler package? >>> from compiler.ast import flatten >>> flatten(["junk",["nested ...
1
vote
1answer
47 views

Flatten inner list without changing outer list in python

So, just typing in python flatten list into stack-overflow/google brings back a huge number of duplicate results. I have tried all of them, and none apply in this specific instance. I am getting back ...
2
votes
1answer
67 views

How to convert inner elements of a List[List[Int]] to tupleNs? (How to flatten polymorphic tupleNs)

I want to convert multiple lists, each with a constant inner list size, that look like this: List(List(1, 2, 3), List(3, 4, 5)) List(List(1, 2), List(3, 4)) to this: List((1, 2, 3), ...
0
votes
1answer
65 views

Flatten array of structs into several arrays in C++

Source code to understand the situation: struct s { int i; float f }; const int cnt = 10; s *source = new s[cnt]; /*... fill source ...*/ int *dest_i = new int[cnt]; float *dest_f = new ...
2
votes
1answer
237 views

How to deserialize a Json dictionary to a flat class with NewtonSoft Json.Net

i am getting similar Json from a service that i do not control: "SomeKey": { "Name": "Some name", "Type": "Some type" }, "SomeOtherKey": { "Name": "Some other name", "Type": "Some ...
0
votes
0answers
26 views

How to flatten Rmagick images and center them?

With rmagick, there are several ways to combine several images. It seems "flatten_images" is the best way to create a list of images, but I fail to see how to scale images properly. list = ...
0
votes
0answers
41 views

Virtual folder containing multipe folders in structure

Is it possible to create an virtual folder in Windows Server 2k8 that contains files from multiple folders? We want to flatten a structure: FOLDER1 -> FOLDER2 -> FILE1.ext FOLDER1 -> FOLDER3 -> ...
-2
votes
2answers
55 views

how to simplify an array of arrays? [closed]

I have the following array that i want to simplify. I need to both flatten it, as well as select the value(s) from every [0] $key of the arrays (please check out my simplified output). Most functions ...
1
vote
1answer
122 views

MYSQL query to flatten joomla group membership table

Joomla has three tables: user: id | username ------------- 1 | you 2 | me group: id | title ------------- 1 | users 2 | managers usergroups_map: user_id | group_id ------------------ 1 ...
0
votes
1answer
85 views

javascript: Trying to flatten array only one level

I am trying to write a function to flatten an array. I have part of the function working and I need help in the other half. flatten: function(anyArray, singleLevel) { if (singleLevel == true) { ...
2
votes
2answers
115 views

turn two nested associative arrays into one flat array?

I am running two queries, they return arrays similar to what is shown below: First: array( array( 'id' => 1 ), array( 'id' => 2 ), array( 'id' ...
1
vote
1answer
106 views

Is there a better way to insert / expand a list into a list using “Linq style”?

I have a list of strings, and in this list of strings there might be references to a list of other strings. For instance, suppose the list is like so: [a.txt, b.txt, c.more], and when I iterate over ...
2
votes
1answer
188 views

c# circular flatten arrays

I'm trying to flatten a 3 dimensional array of (x,y,z) coordinates to a flatten array. So here it basically says the solution is; elements[x][y][z] = Tiles[x + y*WIDTH + Z*WIDTH*DEPTH] This is all ...
5
votes
2answers
299 views

How to flatten a nested tuple?

I have a nested tuple structure like (String,(String,Double)) and I want to transform it to (String,String,Double). I have various kinds of nested tuple, and I don't want to transform each manually. ...
0
votes
1answer
75 views

Piglatin limit and flatten produces wrong results

B = GROUP A BY state; C = FOREACH B { DA = ORDER A BY population DESC; DB = LIMIT DA 5; GENERATE FLATTEN(group), ...
-2
votes
1answer
99 views

LISP: Join multiple lists but not flatten

I have (setq a '(0 1)) (setq b '(3 4)) (setq c '(6 8)) and I wish to get the output x as: ((0 1)(3 4)(6 8)) Please advice.
0
votes
1answer
129 views

pythonic way to flatten nested lists? [duplicate]

Possible Duplicate: join list of lists in python Flatten (an irregular) list of lists in Python How can I flatten lists without splitting strings? I have a list-tuple-list tree and I'd ...
4
votes
2answers
294 views

Racket/Scheme Flatten Explanations

Can someone help me to break down exactly the order of execution for the following versions of flatten? I'm using Racket. version 1, is from racket itself, while version two is a more common? ...
4
votes
2answers
502 views

AutoMapper and flattening nested arrays

I'm trying to use AutoMapper to flatten multiple levels of arrays. Consider the following source classes: class X { public string A { get; set; } public Y[] B { get; set; } } class Y { ...
3
votes
2answers
326 views

Is it possible to flatten MongoDB result query?

I have a deeply nested collection in my MongoDB collection. When I run the following query: db.countries.findOne({},{'data.country.neighbor.name':1,'_id':0}) I end up with this nested result ...
0
votes
2answers
381 views

flatten list in lisp

So I've been looking at flattening a list in lisp. However, what I wanted to do is flatten a list level by level. So instead of having (flatten '(a (b (d (g f))) e)) = (a b d g f e) i want ...
1
vote
1answer
69 views

Something like find in lisp

is there a function like find in lisp that returns true instead of the element we're trying to find? example: I want it to do (find 'x '(a c x)) = t not (find 'x '(a c x)) = x Also, the ...
2
votes
2answers
89 views

Selective flattening of a Python list

Suppose I have a list containing (among other things) sublists of different types: [1, 2, [3, 4], {5, 6}] that I'd like to flatten in a selective way, depending on the type of its elements (i.e. ...
0
votes
1answer
104 views

How to flatten the entire package hierarchy?

If I want to flatten all my package hierarchy, how can I proceed and what are the gotchas? Note that this question is not about why I want to do this, but how. Valid reasons, for example, would ...
3
votes
2answers
223 views

Tool to flatten SVG nested transformations

I wonder if there is any command-line tool available to flatten nested groups with transformations in an SVG? In my particular case, I am converting a CAD-software produced PDF to SVG and then adding ...
2
votes
1answer
195 views

Clojure flatten and laziness

Not sure what is the behaviour I observe while using flatten when constructing a lazy sequence. Looking at the source in clojure.core I can see that the flatten function makes a call to filter and ...
2
votes
1answer
66 views

Code style - “flattening” a package's namespace

My package hierarchy: InstrumentController/ __init__.py instruments/ __init__.py _BaseInstrument.py Keithley2000.py # etc... The contents of the instrument ...
0
votes
0answers
79 views

Establish Parent/Child Relationship and Flatten File

DECLARE @LIST VARCHAR(1000) SET @LIST = '' SELECT @LIST = @LIST + MASTER.EE_GROUP + '' FROM (SELECT DISTINCT EMPLOYEE , EE_GROUP FROM MASTER WHERE MSTR_END LIKE '%1753%') WHERE PARENTID = ...
1
vote
4answers
138 views

python - flatten and unpack list

here is some code i have which is really ugly i am hoping someone can show me how to make it better. i vaguely know how to fix this code but can't get any improvements to work in practice. list1 = ...
1
vote
3answers
372 views

Depth-first flattened collection of an object hierarchy using LINQ

I have an object hierarchy (MasterNode -> ChildNodes) where master and child nodes are of the same type, and there are only two levels (top level and children) like this ('A' is parent of D,E and F, ...
3
votes
4answers
163 views

Flattening a Python list without creating copies of any objects?

So I'm writing a game in Python, and a problem I'm trying to solve requires that I turn a 2D list (that is, a list of lists) into a 1D list. I've seen several ways to do this, but I don't know if any ...
0
votes
2answers
223 views

What does it mean to flatten an iterator?

I would like to know what it means to flatten e.g. flatten an iterator of iterators. Can you tell me? Are there any C/Java/Python idioms for it?
0
votes
3answers
409 views

How to create an image from UILabel?

I'm currently developing a simple photoshop like application on iphone. When I want to flatten my layers, the labels are at the good position but with a bad font size. Here's my code to flatten : ...
1
vote
1answer
448 views

CUDA 2D kernel calling and launch parameters for non-square matrix

I am attempting to port the following (simplified) nested loop as a CUDA 2D kernel. The sizes of NgS and NgO will increase with larger data sets; for now just want to get this kernel to output the ...
1
vote
1answer
69 views

Can't flatten multidimensional array with lots of duplicates

I'm trying to create a script that, based on an input a?? creates an array of all the combinations and permutations of all words containing an a and two other characters from the alphabet. Values are ...
2
votes
1answer
244 views

How to unflatten a multidimensional array (where original key access path is stored as a single key) in PHP?

I'm using the following function to flatten a multidimensional array: function flatten($array, $prefix = '') { $result = array(); foreach($array as $key=>$value) { ...
3
votes
3answers
175 views

Transform java class instance to primitive types only

I want to "flatten"/transform an instance from a given Java class to another instance containing primitive types only. Every field from an object that is not already a primitive type will have to ...
0
votes
2answers
214 views

Map 3D point cloud onto surface then flatten

Mapping a point cloud onto a 3D "fabric" then flattening. So I have a scientific dataset consisting of a point cloud in 3D, this point cloud comprises points on a surface that is curved. In order to ...
1
vote
2answers
97 views

Pypy: Why does a “simpler” nested list take longer to flatten?

I had the need to flatten some nested lists. After writing the flatten function, I naturally tried to see how many ways I could break it. I finally ran it through pypy and was delighted to discover ...

1 2 3