search for: strung

Displaying 20 results from an estimated 30 matches for "strung".

Did you mean: string
2009 Oct 07
1
Possible inefficiency in encode.c
...ndct_tokens;ti++){ It's around line 804, but I am working with 1.1b3 sources so it may have moved a bit. Anyway, I am thinking that this line might be an adequate substitute: for(ti=0;ti<ndct_tokens;ti++){ Because the tokens are now stored in separate per plane arrays instead of all strung together in one big array like they used to be. I presume the point of doing that was to eliminate the need for dct_token_offs altogether. I see dct_token_offs being used in a couple of other places too. I could be wrong of course. Please don't beat this neophyte up if I am :-) Thanks, Chris...
2005 Apr 01
2
formulas and frames
.... I decided (perhaps incorrectly) to just supply the response variable names as an argument "response". 2. I have the usual predictor variables. 3. I discovered the reshape function, which will allow me to string out the data frame in long form with the response strung out in a single vector. So I can get a model matrix for the right hand side of the formula, which can also include what reshape calls the time variable (although it isn't time). so far so good, but 4. Each response variable is conditioned on a "predecessor" variable. s...
2007 Feb 07
1
Large number of prefixes in a route to a trunk
...imizing use of the lines, I'm putting together a dial plan that includes PCS-to-PCS/Nextel calling for the Sprint trunk. Essentially, the PBX would look like a cell phone to the PCS cloud. Total merged NPA-NXX list for SPCS I come up with is around 7,600 prefixes. Since our parent has offices strung out all over the US and is standardizing on SPCS, it makes sense to try and leverage as many PCS-to-PCS calls as we can. Alltel comes in at around 1940 prefixes. Has anyone found a soft limit for what * can handle in an outbound route associated with a trunk? The box that does the routing is a n...
2012 Apr 22
10
Assignment problems
The text below is a part of, some work I have to do, which is due in 2 days and I am strung up with a lot of other stuff, so I was hoping someone would take 5 mins and help me ?? Here is a part of my data.frame: year country1 country2 contig comlang pop1 gdp1 pop2 gdp2 rta dist avgflow 1 1992 AUS AUT 0 0 17.4950008 3217...
2003 Jul 31
1
Can't access shares from Win98 machine
...n ssh 25/tcp open smtp 111/tcp open sunrpc 631/tcp open ipp 901/tcp open samba-swat 6000/tcp open X11 Nmap run completed -- 1 IP address (1 host up) scanned in 2 seconds (I disabled my software firewall for the time being) My home network is strung together using a Linksys Router with NAT firewall. With my current router configuration, and if I boot the Redhat machine into Windows, I am able to access the Windows shares just fine. Any info would be greatly appreciated. Thanks in advance, Dan -- Dan Pixley <danpixley@cox.net>
2011 Dec 21
1
matrix multivariate bootstrap: order of results in $t component
...P Unemployed Armed.Forces Population Year GNP.deflator 0.00 -3.4472 -1.828 -0.6962 -0.34420 8.432 0.15738 0.01 -0.1798 -1.361 -0.5881 -1.00317 5.656 -0.02612 0.08 1.0907 -1.086 -0.4583 -0.08596 2.642 0.57025 > ?boot doesn't say how these are strung out to give the 1 x 18 vector in each row of lboot$t, but I believe it is done columnwise -- is this correct? That is, I think that the column names for the bootstrap results, lboot$t, should vary most quickly down the columns: > c(t(outer(colnames(lboot$t0), rownames(lboot$t0), paste, se...
2020 Jul 21
0
ups is not reporting load %
Greetings all; Mother nature stomping around bumping the service enough to kill a print job, but the ender 3 can be restarted from where it was interrupted. So when that job was done, I strung a 50 foot cord from an outlet driven by the 1500 WA supply, and restarted that job for the 3rd time. Thats a startup draw of 250 watts or so added to this ups. So once that was done and the job was running ok, I come back in here and enter upsc myups to see what the load was. And find upsc doe...
2008 Jan 16
1
Understanding the ARC - arc_buf_hdr and arc_buf_t
I?m trying to understand the inner workings of the adaptive replacement cache (arc). I see there are arc_bufs and arc_buf_hdrs. Each arc_buf_hdr points to an arc_buf_t. The arc_buf_t is really one entry in a list of arc_buf_t entries. The multiple entries are accessed through the arc_buf_t?s b_next member. Why does the arc_buf_hdr point to a list of arc_buf_ts and not just one arc_buf_t, i.e.,
2006 Feb 04
2
Dynamic Rails
Has anyone out there ever created a Rails application to create new Rails applications (with or without a database/persistent storage)?? Basically I am thinking of a Rails application that could create and then edit the files associated with a new Rails application and possibly provide the ability to edit controllers, views, etc. Is there anything out there for doing this? -Mark
2010 Aug 31
2
simultaneous estimation
Hi folks, Not sure what this sort of estimation is called. I have a 2-column time-series x(i,t) [with (i=1,2; t=1,...T)], and I want to do the following 'simultaneous' regressions: x(1,t) = (d - 1)(x(1, t-1) - mu(1)) x(2,t) = (d - 1)(x(2, t-1) - mu(2)) And I want to determine the coefficients d, mu(1), mu(2). Note that the d should be the same for both estimations, whereas the
2009 Oct 13
3
Proposal for replacing asm code with intrinsics
...ndct_tokens;ti++){ It's around line 804, but I am working with 1.1b3 sources so it may have moved a bit. Anyway, I am thinking that this line might be an adequate substitute: for(ti=0;ti<ndct_tokens;ti++){ Because the tokens are now stored in separate per plane arrays instead of all strung together in one big array like they used to be. I presume the point of doing that was to eliminate the need for dct_token_offs altogether. I see dct_token_offs being used in a couple of other places too. I could be wrong of course. Please don't beat this neophyte up if I am :-) Thanks, Chris...
2004 Oct 27
1
Passing one more file after initrd to the kernel...
Hi! I have a particular need... I'm not sure if this is the right place to ask, but surely here there are people that can say me if it is feasible or not... I'm working for a thin-client distribution (thinstation.sf.net); I want to boot it from various media (netowork, cdrom, hd, usb key...), and at the moment syslinux/isolinux/pxelinux are doing it very well... The problem is that the
2003 Nov 07
0
[LLVMdev] Re: usage questions
...other optimization and analyses are done. To get the 'raw' output of the C frontend, use: llvmgcc -S test.c -o foo.ll The .ll file is the raw C frontend output. To get the 'optimized' output, run: gccas foo.ll -o foo.bc 'gccas' is a simple series of ecanned LLVM passes strung together in an order that makes sense, with some glue to parse command line options and such. You can get the same effect by doing this: gccas /dev/null -o /dev/null -debug-pass=Arguments This prints out all of the optimization passes run by gccas, by default. After you have this list, you can...
2016 Jan 22
8
[GlobalISel][RFC] Thoughts on MachineModulePass
Hi, In the initial thread of the proposal for GlobalISel, I have mentioned that it may be interesting to have a kind of MachineModulePass. Marcello mentioned this would be useful for their current pipeline. I am interested in knowing: 1. If anyone else is interested for such concept? 2. What kind of information should we make accessible in an hypothetical MachineModule? I.e., how do you plan to
2008 May 17
5
Help needed
Hi All, I am new to rspec and it seems that I don''t understand some basics. I need to have a XML import which should parse through XML data and saves all that in various mysql tables. The XML part works just fine and I can test this with rspec. However when I try to execute it "should find country object for DE" do I get an error. @user.country is a one-to-many relation in
2002 Oct 08
2
temporal simulation
Hello, I am new to R and was wondering if anybody would be able to advice me on the following query. Is there any package available to generate a mixed Poisson process, temporal data, using R? If anybody has accomplished this before or has any advice I would appreciate it. Regards, Elaine Hand -- Elaine Hand Department of Community Health & General Practice Trinity College Dublin
2006 Oct 07
3
ifelse(logical, function1, function2) does not work
Why this kind of assignment does not work? n <- 1 f <- ifelse(n == 1, sin, cos) f(pi) this must be rewritten as: n <- 1 f <- cos if (n == 1) f <- sin f(pi) [oops. 1.224606e-16 instead of zero. Damn floating point errors :-/] Alberto Monteiro
2003 May 31
3
function to populate a matrix based on a lookup to another matrix ?
Hi, This is a beginner R question. I have a 4x4 matrix named 'lookup' with the following values: 1 2 3 4 1 0.000000 2.828427 5.656854 8.485281 2 2.828427 0.000000 2.828427 5.656854 3 5.656854 2.828427 0.000000 2.828427 4 8.485281 5.656854 2.828427 0.000000 I then create a new empty matrix named 'dd' with specfic row and col names :
2004 Dec 17
0
[Off Topic] humour, XMAS, ground loop - good business strategy
...eme was so clever The dudes would ponder and remember forever The dancing and singing and cash registers ringing Would grind to a halt and now become screaming The wicked intent of Ground Loop's foul mind Searched dudeville all over, hoping to find A careless young dude, oblivious to worry Who strung up his wires in too much of a hurry Probing and looking and peering and viewing The eyes of Old Ground Loop were roving and moving At last he did find on late Christmas Eve A witty and gritty technician named Steve So nifty and thrifty and clever was Steve Economy and elegance you wouldn't be...
2015 Nov 14
1
Xapian-Haystack is available in Python 3
Hi, I'm the current developer of Xapian-Haystack, and I'm glad to announce that we've been finally able to install and pass all the tests of Xapian-Haystack with Xapian 1.3.3 in both Python 2 and 3, which means that Xapian-Haystack now supports Python 3. This naturally would not be possible without your efforts to push Xapian bindings to Python 3, and I thank you for that. Here I