Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 448 results for
slicing
- Page 1
slicing help
Programming
Software Development
14 Years Ago
by dpd069
I am looking for a little assistance in
slicing
a (1050,1) array of temperatures. I have 2 temperature ranges T1-T2 and T2-T3 that i want to slice from the array using boolean
slicing
. How do I go about this? Dan
Re: slicing help
Programming
Software Development
14 Years Ago
by Thisisnotanid
… # Arbitrary second lower bound T4 = 75 # Arbitrary second upper bound #
Slicing
is as follows: T1s = T[T.index(T1): T.index…
slicing tree
Programming
Software Development
14 Years Ago
by gheorghe gardu
…help. I have to implement a
slicing
tree that represent a
slicing
floorplan(
slicing
floorplan divides a rectangle with horizontal … height and width for each rectangle of the
slicing
floorplan that is compatible with the minimum dimensions …the SlicingTree.java, where I defined the class for
slicing
tree. It compiles without errors. When I compile…
Re: slicing help
Programming
Software Development
14 Years Ago
by richieking
Slice what? which part???? can you please provide more info and any code you have . :)
Re: Slicing problem
Programming
Software Development
15 Years Ago
by Carrots
… think there could be another reason as to why the
slicing
is occurring? Using this code has made no difference and…
Fireworks CS4 Slicing
Digital Media
UI / UX Design
14 Years Ago
by Reliable
…fired up Fireworks I have been trying to learn
slicing
with Fireworks since it has new CSS capabilities. I…have watched and read tutorials and it seems that
slicing
works with simple sites where there a re clear … suggestions? AM I missing something with Fireworks
slicing
capabilities? Maybe i am
slicing
incorrectly (although I don't see how)?…
Alternative to string slicing
Programming
Software Development
14 Years Ago
by testie
Hey guys, is there any alternative methods to string
slicing
? An example output would be: input: dani output: d da dan dani I did this with string
slicing
, but am wondering if it is possible to do the same thing without
slicing
. Anyone help out? Testie,
Round Robin Time Slicing
Programming
Software Development
20 Years Ago
by Jaron
1)UNIX operating system uses Round robin Time
slicing
with multilevel feed back. Assume that there are 10 processes … the time slice is 2 units. Simulate Round robin Time
slicing
until all the jobs complete and find average waiting time…
Re: Alternative to string slicing
Programming
Software Development
14 Years Ago
by testie
…, I cannot do the same without the use of string
slicing
. Can you point me in the right direction? Cheers, Testie
Fireworks CS4 Slicing
Digital Media
UI / UX Design
13 Years Ago
by Reliable
… this is limited or I am not doing something right.
Slicing
a web layout when there is a clear distinction between… and graphics works just fine. I'm having problems, however,
slicing
and separating text from graphics when the two overlap or…
Re: Fireworks CS4 Slicing
Digital Media
UI / UX Design
13 Years Ago
by almostbob
… DONT DO IT STOP DOING IT
slicing
the web page does not speed it up
slicing
the web page slows it down…
Re: Fireworks CS4 Slicing
Digital Media
UI / UX Design
13 Years Ago
by matricol
I use
slicing
in my nesletters and it speeds it up ! I dont do websites with
slicing
but I think I is also ok
Re: Fireworks CS4 Slicing
Digital Media
UI / UX Design
14 Years Ago
by opticblaze
Fireworks rocks...and it is way faster for
slicing
. Here is what you do. 1) Open the psd file … can therefore export the background by hiding the top layers
slicing
the background and then exporting it...you can even hide…
Slicing & appending bytes in java
Programming
Software Development
16 Years Ago
by rlaknar
Hi.I am trying to slice a byte array such that the output must have the required bytes from given location of the byte array.Also I am looking for appending bytes to a byte array.Please help me.References would be accepted.Thanks.
Re: Slicing & appending bytes in java
Programming
Software Development
16 Years Ago
by stephen84s
Can you show us the code of what you have been doing, so we can get a clearer picture of what you are trying to achieve.
Slicing problem
Programming
Software Development
15 Years Ago
by Carrots
Hi there, I have a problem in that my derived concrete classes are loosing the data members which are part of my derived classes. I have wrote a simple program to show the problem. [B]GrandParent.h :[/B] [code=c++] #ifndef GRANDPARENT_H #define GRANDPARENT_H using namespace std; #include <string> …
Re: Slicing problem
Programming
Software Development
15 Years Ago
by Ancient Dragon
Do not put executable code such as lines 27-30 in header files. If you want to make that inline then put it in the class declaration the way you did getName(). You have several functions mis-coded like that. [code] class GrandParent { public: //constructor GrandParent(string name) {_name = name;} //Getter string getName() const { return …
Re: Slicing problem
Programming
Software Development
15 Years Ago
by Carrots
I have solved it. The base class needed it's member function to be declared as virtual. This seems to have been the only problem.
Slicing Strings into individual strings in a list
Programming
Software Development
14 Years Ago
by rexona
hi, i'm having trouble taking say the input of the user and converting it to the right type of format i need in order to compare them. An example is say I have the number 1234 and that is assigned to the variable x and the string value of that is assigned to y. How would i go from this string to one which looked like ['1','2','3','4']? I …
Re: Slicing Strings into individual strings in a list
Programming
Software Development
14 Years Ago
by TrustyTony
[CODE]x = 1234 y = str(x) a = list(y) print ', '.join(repr(var) for var in (x,y,a)) [/CODE]
Re: Slicing Strings into individual strings in a list
Programming
Software Development
14 Years Ago
by rexona
thanks, alot but is there no way to go from that format back to the original of just a single string?
Re: Slicing Strings into individual strings in a list
Programming
Software Development
14 Years Ago
by TrustyTony
[CODE]x = 1234 y = str(x) a = list(y) astring = ''.join(a) print ', '.join(repr(var) for var in (x,y,a,astring)) [/CODE]
Re: Slicing Strings into individual strings in a list
Programming
Software Development
14 Years Ago
by vegaseat
Correcting your original thought ... [code]a = [] x = 1234 y = str(x) for character in y: a.append(character) print(a) # ['1', '2', '3', '4'] [/code]
slicing HTML
Programming
Web Development
13 Years Ago
by elibyy
hey there i'm looking for a way to slice a website thru PHP. what that i'm looking for is to slice itunes store website to get app picture , app version , app size etc. example link:itunes.apple.com/il/app/free-music-download-free/id450378277?mt=8&ign-mpt=uo%3D2 thanks in advance elibyy
Slicing a list using generator functions and yield in python 3
Programming
Software Development
3 Years Ago
by Daniel_167
hello, i have problem to write a generator function to slice a great list to pieces in python 3. /because of RAM/. is it possible?
Re: Slicing a list using generator functions and yield in python 3
Programming
Software Development
3 Years Ago
by Reverend Jim
Can you please give more details?
Re: Alternative to string slicing
Programming
Software Development
14 Years Ago
by Gribouillis
You can print the characters one by one. Post your code, I'll post mine :)
Re: Alternative to string slicing
Programming
Software Development
14 Years Ago
by Gribouillis
Here is my code. It doesn't work without importing the future print_function. [code=python] # python 2 and 3 from __future__ import print_function def sequenceprint2(s): for i in range(len(s)): for j in range(i): print(s[j], end='') print(s[i]) print("-"*10) sequenceprint2("dani") print("-&…
Re: Alternative to string slicing
Programming
Software Development
14 Years Ago
by TrustyTony
[code=python] def sequenceprint(s): """Prints out the input string in succession""" i = 0 while i < len(s): print s[0:i+1] i = i + 1 [/code]
Re: Alternative to string slicing
Programming
Software Development
14 Years Ago
by testie
[QUOTE=Gribouillis;1363849]Here is my code. It doesn't work without importing the future print_function. [code=python] # python 2 and 3 from __future__ import print_function def sequenceprint2(s): for i in range(len(s)): for j in range(i): print(s[j], end='') print(s[i]) print("-"*10) …
1
2
3
8
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC