A slice is a representation of a part of an array, usually defined by a reference to the underlying array, an index giving the starting position and a length or end position. This tag can be used for [Go] or [Python] slices or similar constructs in other languages.

learn more… | top users | synonyms

2
votes
1answer
44 views

Python iterate slice object

If I have a slice object s = slice(a,b,c) and an array length n, is there a nice readymade iterator for the elements so that I can do something like: for index in FUNCTION_I_WANT(s, n): ...
2
votes
2answers
58 views

Slicing std::array

Is there an easy way to get a slice of an array in C++? I.e., I've got array<double, 10> arr10; and want to get array consisting of five first elements of arr10: array<double, 5> ...
1
vote
5answers
48 views

Splitting a python dict from a certain key

I'm trying to split a dict from a certain point in the dict. It seems like doing a simple items_dict[3:] would work but would rather not. items_dict = { "Cannon barrels":10, "Cannon ...
0
votes
1answer
92 views

Why doesn't this code work? i am just trying to slice.(in python)

When I enter this code, there is an error in the way a slice works...It won't let me enter it, and it overall just wont work. verb_1 = raw_input("Enter a word") verb_2 = verb_1.lower() verb_2_ending ...
2
votes
4answers
57 views

Python list extend functionality using slices

I'm teaching myself Python ahead of starting a new job. Its a Django job, so I have to stick to 2.7. As such, I'm reading Beginning Python by Hetland and don't understand his example of using slices ...
0
votes
1answer
27 views

Possible to use the slice operator with the aggregation framework?

I have a list of employees, each who belong to a department and a company. An employee also has a salary history. The last value is their current salary. Example: { name: "Programmer 1" ...
0
votes
1answer
69 views

slice query using hector on cassandra composite column

need some help on filtering based on Composite column. I am unable to get filtering on 2nd part of composite column for some reason - create column family xxx with comparator= ...
2
votes
1answer
39 views

getslice deprecated in Python2.6, but still in use when subclassing tuple?

Consider the following example, executed under Python 2.6.6 (which I'm unfortunately stuck with at the moment): >>> class A: ... def __getitem__(self, index): ... ...
0
votes
1answer
22 views

django template slice css behaviour

I was working on a small blogging engine for fun which allows for html contents. Also on the home page every blog post is sliced to 500 and displayed. While I was coding this element it struck me ...
1
vote
3answers
31 views

choose numbers of different lengths

I am using Python have a list of 2 columns with lots of white space in between, e.g.: TEXT 123.34645 TEXT 13.35372 TEXT 0.55532 TEXT 11.60538 I want my ...
6
votes
1answer
86 views

Unexpectedly short Perl slices

The following snippet of Perl is supposed to print the first 5 items of an array referenced by a hash value, or fewer if the array is shorter. while ( my ($key,$value) = each %groups ) { print ...
0
votes
1answer
32 views

Jquery using slice to show Li's based on Clicks

I have 3 items that I want to show at one time. I have 4 in total. If the user clicks on the left arrow it should take them back an item by subtracting from the start and end, if they hit right arrow ...
2
votes
1answer
83 views

Slicing in Python(Not Duplicate, Slicing for Translation) [duplicate]

Hey guys I have a simple question. How do I slice a string of any length into equal parts ie AGTTGTCGAGGTTGCGATTTATTGGGTGCGAGT by 3 into AGT TGT CGA GGT TGC GAT TTA TTG GGT GCG AGT ?
-2
votes
1answer
89 views

Extend Go Programming Language with C, Converting Data Types

How can I convert data types from c to go and viceversa? for example I have a function that returns an array of integers: char* Test() { char*msg = "Hello, Go"; return msg; } how can I ...
1
vote
5answers
69 views

Add Last Child Elements of <div> in some Class

My <div> contains 10 images. I want to add a class to the last 3 images. How to do it? $(document).ready(function () { $('img').addClass('t2'); $('#myImageFlow img').slice(12, ...
0
votes
1answer
87 views

Python: Read binary file into buffer as integer then Slice

In python, how do i load a binary file into a buffer then read individual bytes as numbers not strings.?
0
votes
1answer
54 views

Register a class with a manager, then call the sub classes overridden methods

OK so i have a few problems. 1. I need to be able to register the childclass when its created with game for broadcasting. 2. I need to be able to call the child class's method from an array of ...
0
votes
1answer
22 views

Remove item from php loop

I have a loop which index files if folder named "data" and show all files as loop. In extra it checks for url string and if there is subfolder (data/folderrandom) described in string "d" ...
1
vote
1answer
43 views

Eigen boolean array slicing

In MATLAB it is common to slice out values that satisfy some condition from a matrix/array (called logical indexing). vec = [1 2 3 4 5]; condition = vec > 3; vec(condition) = 3; How do I do this ...
0
votes
3answers
60 views

Splitting up a text file into sets of n characters

So I have a long text file with a bunch of numbers and I want to reformat this file so that every 12 characters are on their own line, the file is 4392 characters long. My strategy was to add the ...
0
votes
1answer
38 views

$slice implemented in the php driver?

My question is if one can use '$slice' with the update() and $push in mongodb. I already tried this: (with and without casting to (object) $db->collection->update( array('_id' => new ...
0
votes
1answer
38 views

Slice multiple part from single image in iPhone? [duplicate]

I am working in iPhone application, I have tried to slice multiple part from single image but i can't get exact solution. I want single image to slice multiple part like 3x3, 4x4, 5x5, 6x6 etc... How ...
2
votes
2answers
98 views

NumPy: How to collapse N-dimensional array along a single dimension using argmin/max output?

Is there a straight-forward way to use the output of calling NumPy's argmax or argmin functions on a single dimension of an N-D array to define an index into that array? This is probably best ...
4
votes
1answer
74 views

Modifying then Slicing 2D Array of Unknown Size in Perl

I know that similar topics have been covered here, but I am running into a problem that I think arises from my misunderstanding how array slices are interpolated in the context of a foreach loop. I ...
2
votes
3answers
40 views

Slice regex back reference? Nocando?

Names in the form Nelson, Craig T. need to be split into AN Nelson FN Craig IT C.T. IT means initials, note the first initial is the first letter of FN, first name. I already have a bunch of ...
0
votes
5answers
43 views

JavaScript slice() explode on base of space(“ ”)

I want to get a last word from input field. If some write where it get where if some one put where are then it get are and if some one put where are you going then it give going. I am using this code ...
0
votes
2answers
77 views

Saving with Java springdata a mongoDB document with capped array ($slice and $sort)

I'm developing a log register using mongoDB and Java SpringData. Here MongoDb capped sub-collection talks about mongoDB structure, but I would do with Java. The most important thing it's that I have ...
6
votes
1answer
131 views

Passing slice of a static/dynamic array by reference with start and length specifier

Passing arrays (dynamic or static) to methods/procedures/functions with open array parameters, declaration can look like this: procedure WorkWithArray( const anArray : array of Integer); (* or ...
2
votes
2answers
79 views

Java 3D array: Storing cube, retreiving slice of cube

When working with an odd, cubic 3d array (3x3x3, 5x5x5, 7x7x7, etc), what would be the most efficient way to return a 2d slice of that array, given the axis on which to orient the slice and a value to ...
0
votes
0answers
27 views

JQuery chunk copy large table

I need to help with my code to copy large table part by part. I have variable tbody which is the copz destination and than I have collection of rows in variable rows I tried to split the collection ...
0
votes
2answers
25 views

slice/stride by variable?

background I'm attempting to code a basic letter game in python. In the game, the computer moderator picks a word out of a list of possible words. Each player (computer AI and human) is shown a ...
1
vote
3answers
51 views

How to slice a String Object and return the new value in jQuery?

So basically I have a gallery script in jQuery. When a user clicks on a thumbnail image the image attribute src is then transferred to the main gallery img element. However I now want the user to be ...
1
vote
2answers
71 views

How to sort slices in GAE Go

I am trying to sort slices. How to this in gae using go? I have struct type courseData struct { Key *datastore.Key FormKey *datastore.Key Selected bool User ...
0
votes
1answer
153 views

Plot data values inside pie charts slice

How to add a data values inside the slice in pie chart.Can any one help me in this? whether this is possible?
0
votes
1answer
66 views

using islice to read a text file chunk-by-chunk

i have a text file with several million of point (x,*y*,z etc). I am trying to read the first million of lines with islice in order to initialize a dictionary from collections import defaultdict ...
5
votes
1answer
147 views

Go lang slice columns from 2d array?

I'm curious, how do you create a column slice from a 2d Array? I have an array for a game board for Tic-Tac-Toe, and I'm trying to create a column slice, but my slices are coming out identical. /* ...
1
vote
2answers
71 views

Are the capabilities python list slicing really asymmetric?

Consider the following code: >>> a = [0, 1, 2] >>> for i in range(len(a)): >>> print a[0:i] [] [0] [0, 1] However, when I flip the code to take slices from the other ...
1
vote
2answers
138 views

Python plot - stacked image slices

I have a series of basic 2D images (3 for simplicity for now) and these are related to each other, analogous to frames from a movie: Within python how may I stack these slices on top of each other, ...
2
votes
5answers
107 views

Whats the best way to split an array in ruby into multiple smaller arrays of random size

I have multiple arrays in ruby of variable length from 1 to 40 : @items is a typical array which could be anywhere from 1 to 40 in length. eg @items = [1, 2, 3, 4, 5, 6] I want to randomly split ...
8
votes
3answers
73 views

Why does somelist[len(somelist)] generate an IndexError but not somelist[len(somelist):]?

I understand that somelist[len(somelist)] cannot access an index that is outside of the defined list - this makes sense. But why then does Python allow you to do somelist[len(somelist):]? I've even ...
0
votes
1answer
83 views

slices of H264 with various frame_number

I'm decoding a H264 video bit stream. I have PPS and SPS at first, after that is I slice, P,B,SI,SP slice. I used ffmpeg to convert it into mp4 format, but the video is not correct (it's playable but ...
2
votes
1answer
77 views

Numpy array slicing vs. for-loop results

Consider a sphere, composed of shells of varying density. I have two arrays, one for the outer radius of each shell (rad[]) and one for the density of each shell (den[]). I want to calculate the ...
1
vote
1answer
57 views

storing and retrieving byte representation of interface

I have a need to store and retrieve the byte representation of interface{} values. To clarify i'm not trying to store the underlying values packed into a slice, whatever size they may be, but looking ...
-1
votes
3answers
75 views

string slicing python in lists

maybe this is a dublicate but I'm not finding an answer. How do I manage to slice a long string after every comma that it turns like a list like this : st= input("Enter string:").slice(',') I ...
0
votes
1answer
91 views

Pythonic slicing of nested attributes

I am dealing with classes whose attributes are sometimes list whose elements can be dictionaries or further nested objects with attributes etc. I would like to perform some slicing that with my grasp ...
-5
votes
2answers
72 views

Find common slices in two Python lists

I would like to find common slices in two Python lists. For example: list1 = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] list2 = [0, 0, 3, 4, 5, 0, 0, 8, 9, 0] should return two lists: [3, 4, 5] and [8,9] ...
3
votes
3answers
77 views

What's the difference between a[] and a[:] when assigning values?

I happen to see this snippet of code: a = [] a = [a, a, None] # makes a = [ [], [], None] when print a = [] a[:] = [a, a, None] # makes a = [ [...], [...], None] when print It seems the a[:] ...
1
vote
1answer
64 views

PostgreSQL: strange collision of ORDER BY and LIMIT/OFFSET

I'm trying to do this in PostgreSQL 9.1: SELECT m.id, vm.id, vm.value FROM m LEFT JOIN vm ON vm.m_id = m.id and vm.variation_id = 1 ORDER BY lower(trim(vm.value)) COLLATE "C" ASC LIMIT 10 OFFSET 120 ...
0
votes
1answer
51 views

Slice syntax to object [duplicate]

I have a class holding data (a numpy ndarray) that includes a method storing the data to a mat-file (using scipy.io.savemat). The data can be very large, so I may only want to store a segment of the ...
1
vote
3answers
128 views

Perl: Slice an array, without creating a whole new array

I have a reference to an big array, and some of the elements (from some index to the end) need to get used to insert new rows in a DB. Is there anyway I can create a reference to part of a bigger ...

1 2 3 4 5 8