search for: freakishly

Displaying 15 results from an estimated 15 matches for "freakishly".

2003 Jun 05
1
persp(), par() and axis()
Dear R experts, On explanation of persp() parameters the last item is: ...: additional graphical parameters (see `par'). However, setting the `tcl' parameter has no any effect. I guess that axes are added to persp() in somewhat freakish way, and have nothing in common with axis() function. I found the very useful trans3d() function in persp() help page, and I'd like to use it
2006 Jan 16
1
Homogenous groups building - Randomisation
Dear R-users, We expect to form N homogeneous groups of n features from an experimentation including N*n data. The aim is to prevent group effects. How to do that with R functionalitites ? Does anyone know any way enabling this ? Example : 100 patients are observed. 3 biochemical parameters are mesured for each one (Red and white globules ans glycemia). Patient RG RW
2013 Feb 06
0
[LLVMdev] On large vectors
I can see why freakishly large vectors would produce bad code. The type <50 x float> would be widened to the next power of two, and then split over and over again until it fits into registers. So, any <50 x float> would take 16 XMM registers, that will be spilled. The situation with integer types is even wors...
2013 Feb 06
2
[LLVMdev] On large vectors
I have a simple expression-evaluation language using LLVM (it's at https://cowlark.com/calculon, if anyone's interested). It has pretty primitive support for 3-vectors, which I'm representing as a <3 x float>. One of my users has asked for proper n-vector support, and I agree with him so I'm adding that. However, he wants to use quite large vectors. He's mentioned 30
2013 Feb 06
3
[LLVMdev] On large vectors
On 6 February 2013 17:03, Nadav Rotem <nrotem at apple.com> wrote: > I can see why freakishly large vectors would produce bad code. The type > <50 x float> would be widened to the next power of two, and then split over > and over again until it fits into registers. So, any <50 x float> would > take 16 XMM registers, that will be spilled. The situation with integer &gt...
2018 Feb 22
4
RADIUS
Gordon Messmer wrote: > On 02/14/2018 08:37 AM, hw wrote: >> Then what?? How do I make it so that the users are actually able to authenticate? > > > Look for documentation on 802.11x authentication for the specific client you want to authenticate. Thanks, I figured it is what I might need to look into. How about a client that uses PXE boot? > WiFi is pretty
2006 Aug 17
2
Weird routing error in 1.1.6 slash frozen on edge
So i have this route set up: map.connect ''xml/download/:user/audio/:category/:file'', :controller => ''xml'', :action => ''download'' I am sending the user through an xml controller as it is coming from an RSS feed, the download action looks like this: def download episode = Episode.find(params[:episode]) episode.downloads
2018 Feb 22
0
RADIUS
On Thu, 22 Feb 2018, hw wrote: > That seems neither useful, nor feasible for customers wanting to use the > wireless network we would set up for them with their cell phones. Are cell > phones even capable of this kind of authentication? Yes, entirely capable. WPA2-Enterprise isn't some freakish and unusual solution. https://www.eduroam.org/ I configure wireless once on my device
2000 Jun 23
2
sending "WinPopup" message to a user
Just wondering if there is a way to send a WinPopup message to a user (using username). I have had a look at smbclient but it appears to only allow sending messages to a computer name. Thanks in advance, Russell Kliese
2013 Feb 06
0
[LLVMdev] On large vectors
Renato Golin wrote: [...] > I can see why freakishly large vectors would produce bad code. The > type <50 x float> would be widened to the next power of two, and > then split over and over again until it fits into registers. So, > any <50 x float> would take 16 XMM registers, that will be spilled. > The situa...
2003 Nov 04
3
*, Fritz!PCI and strange behavior
I'm testing * (CVS-09/16/03-02:07:49 with zaprtc 0.0.1) with Fritz!PCI (chan_capi 0.3.0), and have a couple of funny things - I wonder if anyone else has seen them: - Now and then, * just exits. Until now I had lowish-level verbosity on, so all I saw was 'Executing last minute cleanups'. What can trigger * exits? (in other words, what should I pay attention to when attempting to
2011 Mar 02
3
transform table to matrix
I have a text file that I have imported into R. It contains 3 columns and 316940 rows. The first column is vegetation plot ID, the second species names and the third is a cover value (numeric). I imported using the read.table function. My problem is this. I need to reformat the information as a matrix, with the first column becoming the row labels and the second the column labels and the cover
2018 Feb 23
6
RADIUS
John Hodrien wrote: > On Thu, 22 Feb 2018, hw wrote: > >> That seems neither useful, nor feasible for customers wanting to use the >> wireless network we would set up for them with their cell phones.? Are cell >> phones even capable of this kind of authentication? > > Yes, entirely capable.? WPA2-Enterprise isn't some freakish and unusual > solution. Ok, so
2000 Jun 25
2
Login script
Is there a file I can place in the netlogin directory (or anywhere else for that matter) that will represnet a logon script? I want to have my workstations auto-mount particular shares on the samba server, without the user having to make the mount. This way when I add new users, the shares are automatically present. If there is a script I can place somwehre, please tell me what it's name is
2007 Sep 26
10
How do I best setup data for Story Runner?
Just started looking at the Story Runner integration, and am converting a few Rails integration tests to get a feel for it. My integration tests relied on fixtures, and since my models have a significant amount of validation (and hence need valid data unless I save without validation), this has made setup easy. With stories however, I''m wondering what the recommended approach is.