Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

62
votes
8answers
17k views

What is the slicing problem in C++?

Someone mentioned it in the IRC, but google doesn't have a good answer.
48
votes
3answers
9k views

How do you use the ellipsis slicing syntax in Python?

This came up in Hidden features of Python, but I can't see good documentation or examples that explain how the feature works.
29
votes
2answers
352 views

Why are slices in Python 3 still copies and not views?

As I only now noticed after commenting on this answer, slices in Python 3 return shallow copies of whatever they're slicing rather than views. Why is this still the case? Even leaving aside numpy's ...
17
votes
8answers
5k views

Log4J: Strategies for creating Logger instances

I decided to use Log4J logging framework for a new Java project. I am wondering what strategy should I use for creating/managing Logger instances and why? one instance of Logger per class e.g. ...
16
votes
5answers
312 views

Slicing a time range into parts

First question. Be gentle. I'm working on software that tracks technicians' time spent working on tasks. The software needs to be enhanced to recognize different billable rate multipliers based on ...
15
votes
2answers
1k views

Improving pure Python prime sieve by recurrence formula

I am trying to optimize further the champion solution in prime number thread by taking out the complex formula for sub-list length. len() of the same subsequence is too slow as len is expensive and ...
12
votes
2answers
335 views

Python : Why use “list[:]” when “list” refers to same thing?

Consider a list >>> l=[1,2,3]. What is the benefit of using >>> l[:] when >>> l prints the same thing as former does? Thanks.
11
votes
7answers
2k views

Iteration over list slices

Good day function-wizards, I want an algorithm to iterate over list slices. Slices size is set outside the function and can differ. In my mind it is something like: for list_of_x_items in ...
10
votes
3answers
93 views

Best way to do curved shadows

For something like this: What would be the most effective way to do this? Best to do an image, or is there a way to achieve this with CSS without a bunch of hacks/extra markup that I dont know ...
9
votes
4answers
522 views

How to iterate over the first n elements of a list?

Say I want I've got a list and I want to iterate over the first n of them. What's the most best way to write this in Python?
9
votes
1answer
365 views

What is the purpose of the two colons in this Python string-slicing statement?

For example, str = "hello" str[1::3] And where can I find this in Python documentation?
9
votes
8answers
2k views

difference between a pointer and reference parameter?

Are these the same: int foo(bar* p) { return p->someInt(); } and int foo(bar& r) { return r.someInt(); } Ignore the null pointer potential. Are these two functions functionally ...
8
votes
7answers
308 views

Learning C++: returning references AND getting around slicing

I'm having a devil of a time understanding references. Consider the following code: class Animal { public: virtual void makeSound() {cout << "rawr" << endl;} }; class Dog : public ...
8
votes
2answers
628 views

Dynamic slicing in C/C++

after reading the book of debugging from Andreas Zeller, I became interested in Dynamic Slicing (http://en.wikipedia.org/wiki/Program%5Fslicing). At the moment I only found relevant tools for Java ...
7
votes
4answers
235 views

Upper diagonal of a 2D numpy array

This seems simple (and is trivial to write a three-line loop for), but how can I use numpy slicing make a list of the index locations of the upper diagonal of a numpy array? I.e. Given a 4x4 array, ...
7
votes
5answers
2k views

Slicing of a numpy 2d array, or how do I extract an mxm submatrix from an nxn array (n>m)

I want to slice a numpy nxn array. I want to extract an arbitrary selection of m rows and columns of that array (i.e. without any pattern in the numbers of rows/columns), making it a new, mxm array. ...
7
votes
2answers
2k views

Python: Implementing slicing in __getitem__

I am trying to implement slice functionality for a class I am making that creates a vector representation. I have this code so far, which I believe will properly implement the slice but whenever I do ...
6
votes
4answers
140 views

Create a slice using a tuple

Is there any way in python to use a tuple as the indices for a slice? The following is not valid: >>> a = range(20) >>> b = (5, 12) # my slice indices >>> a[b] # ...
6
votes
4answers
708 views

Exception slicing - is this due to generated copy constructor?

I've just fixed a very subtle bug in our code, caused by slicing of an exception, and I now want to make sure I understand exactly what was happening. Here's our base exception class, a derived ...
5
votes
1answer
163 views

Slice NSArray from end of array

What is the best way to "slice" an NSArray from the end, rather than the beginning, of the array (for example, finding the subarray containing the last few elements of a NSArray of unknown length)? In ...
5
votes
3answers
2k views

Python: How to get last 9 items of a list?

I need the last 9 numbers of a list and I'm sure there is a way to do it with slicing but I can't seem to get it. I can get the first 9: num_list[0:9] Any help would be great. Thanks in advance ...
4
votes
2answers
84 views

Two column DIV layout becomes one column center aligned

In the center of my webpage I have a div with id center-container which contains 2 divs: one for a video player(on the left) and the second one (on the right) for an optional thing like playlist. ...
4
votes
2answers
66 views

is there some kind of expression evaluation within list/tuple slicing syntax within Python?

with numpy arrays, you can use some kind of inequality within the square bracket slicing syntax: >>>arr = numpy.array([1,2,3]) >>>arr[arr>=2] array([2, 3]) is there some kind ...
4
votes
5answers
93 views

Numpy: arr[…,0,:] works. But how do I store the data contained in the slice command (…, 0, :)?

In Numpy (and Python in general, I suppose), how does one store a slice-index, such as (...,0,:), in order to pass it around and apply it to various arrays? It would be nice to, say, be able to pass a ...
4
votes
1answer
261 views

Python/Numpy - Wrap Slice Around End of Array

I have two 1D arrays, one that has some values of interest (a) and another that provides indices into that array (b). I know that the values in b always increase, except at one point (could be ...
4
votes
3answers
622 views

Python slicing a string using space characters and a maximum length

I'd like to slice a string up in a similar way to .split() (so resulting in a list) but in a more intelligent way: I'd like it to split it into chunks that are up to 15 characters, but are not split ...
4
votes
3answers
3k views

How to return a part of an array in Ruby?

With a list in Python I can return a part of it using the following code: foo = [1,2,3,4,5,6] bar = [10,20,30,40,50,60] half = len(foo) / 2 foobar = foo[:half] + bar[half:] Since Ruby does ...
4
votes
2answers
658 views

Slicing a NURBS surface

I have a NURBS surface which has 4 curved edges. (I have the 4 bezier points for the curves) I'd like to slice the NURBS surface with a slicing-plane thats on-axis (not as advanced as 3DSMAX!), and ...
3
votes
3answers
104 views

How do you use a variable as an index when slicing strings in Python?

I've been trying to slice two characters out of a string using a loop, but instead of grabbing two characters, it only grabs one. I've tried: input[i:i+1] and input[i:(i+1)] but neither seems ...
3
votes
3answers
235 views

Algorithm for slicing a dynamic graph

I am currently working on a project based on graph and I am searching for an algorithm for slicing an dynamic graph. I have already done some research but most algorithms that I have found works only ...
3
votes
1answer
3k views

ValueError: setting an array element with a sequence

This code: import numpy as p def firstfunction(): UnFilteredDuringExSummaryOfMeansArray = [] ...
3
votes
4answers
260 views

Yielding until all needed values are yielded, is there way to make slice to become lazy

Is there way to stop yielding when generator did not finish values and all needed results have been read? I mean that generator is giving values without ever doing StopIteration. For example, this ...
3
votes
1answer
1k views

Object Slicing, Is it advantage?

Object slicing is some thing that object looses some of its attributes or functions when a child class is assigned to base class. Some thing like Class A{ } Class B extends A{ } Class SomeClass{ ...
3
votes
4answers
299 views

Why does an assignment for double-sliced numpy arrays not work?

why do the following lines not work as I expect? import numpy as np a = np.array([0,1,2,1,1]) a[a==1][1:] = 3 print a >>> [0 1 2 1 1] # I would expect [0 1 2 3 3] Is this a 'bug' or is ...
2
votes
2answers
63 views

How to slice a struct array?

How can I extract a specific field from each element of a Matlab struct array? >> clear x >> x(1).a = 6; >> x(2).a = 7; I'd like an array containing 6 and 7. Neither x(:).a nor ...
2
votes
5answers
82 views

itertools and strided list assignment

Given a list, e.g. x = [True]*20, I want to assign False to every other element. x[::2] = False raises TypeError: must assign iterable to extended slice So I naively assumed you could do something ...
2
votes
4answers
64 views

Slicing a 20X20 area around known indices (x,y) in a numpy array

I have a large 2D numpy array for which I know a pair of indices which represent one element of the array. I want to set this element and the surrounding 20X20 area equal to zero; I have attempted ...
2
votes
2answers
115 views

How to extract an arbitrary line of values from a numpy array?

I have a numpy array that contains some image data. I would like to plot the 'profile' of a transect drawn across the image. The simplest case is a profile running parallel to the edge of the image, ...
2
votes
2answers
92 views

MP3 audio file splitting with Python

I have mp3 files and i want to slice these into samples, by giving a start and end time to a library function. Does anyone know which python library suits me to do this??
2
votes
3answers
95 views

Assignment to discontinuous slices in python

In Matlab I can do this: s1 = 'abcdef' s2 = 'uvwxyz' s1(1:2:end) = s2(1:2:end) s1 is now 'ubwdyf' This is just an example of the general: A(I) = B Where A,B are vectors, I a vector of indices ...
2
votes
1answer
62 views

Parallel assignment in ruby working differently for two equivalent code fragments

The two code fragments below should print the same thing, but they don't. ary = %W(1 2 5 6 B 8 5 4 6 5 6 9 7 A) indx1 = 0...ary.index("B") indx2 = (ary.index("A") + 1)..-1 ary[indx1], ary[indx2] = ...
2
votes
1answer
38 views

How to create pages using divs

Could someone suggest me any good beginners guide on how to create web pages from scratch (slice a psd) using divs. I have html and css knowledge but have never created any page from scratch in any ...
2
votes
2answers
324 views

numpy: efficient execution of a complex reshape of an array

I am reading a vendor-provided large binary array into a 2D numpy array tempfid(M, N) # load data data=numpy.fromfile(file=dirname+'/fid', dtype=numpy.dtype('i4')) # convert to complex data ...
2
votes
1answer
263 views

Slicing Nested List

I'm sorry for posting such a dumb question, I've been googling this for way too long and I just need someone to quickly explain this example. I'm familiar with slicing, I just can't wrap my head ...
2
votes
1answer
216 views

Customize Python Slicing, please advise

I have a class that subclasses the list object. Now I need to handle slicing. From everything I read on the intertubes this has to be done using the __getitem__ method. At least in Python 2.7+ ...
2
votes
2answers
1k views

Slicing a dictionary by keys that start with a certain string

This is pretty simple but I'd love a pretty, pythonic way of doing it. Basically, given a dictionary, return the subdictionary that contains only those keys that start with a certain string. ยป d = ...
2
votes
4answers
116 views

C++: Calling a derived method on an element of a base vector (example given)

Suppose that I have the following structure of classes. I want to be able to determine of what class type the element in my Animal vector is, so that I may perform subclass-specific methods on it. The ...
2
votes
6answers
279 views

Slice a binary number into groups of five digits

Is there any neat trick to slice a binary number into groups of five digits in python? '00010100011011101101110100010111' => ['00010', '00110', '10111', ... ] Edit: I want to write a cipher/encoder ...
2
votes
3answers
139 views

Why isn't this method call virtual like I was expecting?

I want to ask what happen, when I use virtual functions without pointers ? for example: #include <iostream> using namespace std; class Parent { public: Parent(int i) { } virtual void f() ...
2
votes
3answers
163 views

Does std::move result in slicing?

For example, in unique_ptr<Derived> = new deriv; std::vector<unique_ptr<Base>>.push_back(std::move(deriv)); will deriv be sliced to type unique_ptr<Base>?

1 2 3