similar to: Inconsistency in vector printing depending on length

Displaying 20 results from an estimated 11000 matches similar to: "Inconsistency in vector printing depending on length"

2001 Mar 08
1
Start smbd and nmbd daemons on other HP Unix (version 10.20) serv er
Hi everyone, I would like to know if it's possible to start the smbd/nmbd daemons from an other HP Unix server. The installation of Samba has been made on a RAID mounted on an other Unix server (the main one). We want to do that because whe need to reduce the working flow in the main server. Thanks Daniel Comtois, Unix Tech. daniel.comtois@viasystems.com -------------- next part
2012 Jan 28
1
Sensitivity analysis - looking a tool for epidemiologic research
Stata users can rely on the very neat Episens package for sensitivity analysis. Briefly, it allows one to specify a diagnostic tool's sensitivity and specificity and take those into account when estimating a risk ratio, for instance. A full description of the package is available at <http://www.stata-journal.com/sjpdf.html?articlenum=st0138>
2006 Feb 08
3
Two Lines, Two Businesses
After tinkering with a hand-knitted extensions.conf based on "Asterisk - TFOT", I've now set up a server with Asterisk@Home and am experimenting with it. I'd appreciated any advice from the more experienced list members about which way to proceed. We (my wife and I) have two separate micro-businesses with two POTS lines plus fax. I'd like to have inbound calls on the two
2012 Mar 28
2
SAS Import with sas.get {Hmisc} - status 127 error
I'm trying to import a .sas7bdat dataset into R with sas.get. I'm using Win-7 and SAS 9.2. I have read the following post and did tweak the line (127, incidentally) of code. <http://r.789695.n4.nabble.com/R-Problem-with-sas-get-function-in-Hmisc-td81 4367.html> http://r.789695.n4.nabble.com/R-Problem-with-sas-get-function-in-Hmisc-td814 367.html However, I get the following
2020 Feb 21
0
capabilities(), was [R-pkg-devel] ... No protocol specified (OS X only)
Diverting (from R-package-devel) to R-devel, as it is now about extending R : >>>>> Jeroen Ooms on Thu, 20 Feb 2020 20:34:14 +0100 writes: > On Tue, Feb 18, 2020 at 1:29 AM Dominic Comtois > <dominic.comtois at gmail.com> wrote: >> >> Hello, >> >> On my package's check results ( >>
2011 Oct 20
2
Agile book apache2.conf: Forbidden You don't have permission to access / on this server.
Appreciate any help - I am working through Agile web development (4.0) and am stuck on the deployment using phusion passenger. I get this: "Forbidden You don''t have permission to access / on this server." when I put depot.yourhost.com in the browser. I have been through various web searches and for file permissions and suggestions to change the <Files> container.
2012 Jun 03
1
Regions of significance plots with ggplot2
I'd like to create a plot similar to this one from Kochanska et al. (Development and Psychopathology, 2011): <http://pages.videotron.com/do999/r-help/Kochanska_graph_ros.jpg> http://pages.videotron.com/do999/r-help/Kochanska_graph_ros.jpg I am new to ggplot2 and can't see any obvious way to create distinct coloured regions for the background, nor can I find any relevant
2012 Jan 13
1
fUtilities removed
When setting up my new machine, I had the surprise to see that "Package 'fUtilities' was removed from the CRAN repository." This is problematic for my work. I use many of its functions, and it will complicate things a lot if other programmers want to use my previous code in the future. Plus, nowhere can I find the justification for its removal. Thanks for any info on this
2005 Dec 20
2
echo canceller
hi, haven't got the chance to sit down and look into it. from what I read in the list, double talk detection is in the pipeline... :D. Just 2 quick questions: i) does this canceller handle wideband for speex wideband? ii) does it handle feedback or howling? Lastly, a newbie question for echo cancellation: is there a convenient test to ensure that the input and output buffers obtained from
2012 Mar 19
1
glm: getting the confidence interval for an Odds Ratio, when using predict()
Say I fit a logistic model and want to calculate an odds ratio between 2 sets of predictors. It is easy to obtain the difference in the predicted logodds using the predict() function, and thus get a point-estimate OR. But I can't see how to obtain the confidence interval for such an OR. For example: model <- glm(chd ~age.cat + male + lowed, family=binomial(logit)) pred1 <-
2005 Dec 20
2
回复: Re: echo canceller
I have tested the AEC by file model,but found it doesn't work!The output file I got still had echo. And I have found several version of mdf.c,could you tell me which version I should use? Now I'm using version 1.11.1.1 and under windows there have some bugs. --- Jean-Marc Valin <jean-marc.valin@usherbrooke.ca>??: > > > haven't got the chance to sit down and look into
2014 Feb 02
3
[LLVMdev] LLVM/Clang on Sparc64
Thanks to Jakob's work on Sparcv9 ABI in Clang and recent changes to Sparc code generator, I am happy to announce that Clang can self host itself on Linux/Sparc64 and on FreeBSD/Sparc64. However, it still fails on a few unit tests and nightly tests, primarily due to misaligned memory accesses in the code (See bugs 18482, 18500, 18502, 18536, 18693). Unlike other architectures, misaligned
2001 Mar 08
1
Start smbd and nmbd daemons on other HP Unix (version 10.20) Server
Hi everyone, I would like to know if it's possible to start the smbd/nmbd daemons from an other HP Unix server. The installation of Samba has been made on a RAID mounted on an other Unix server (the main one). We want to do that because whe need to reduce the work of the main server. Thanks Daniel Comtois, Unix Tech. daniel.comtois@viasystems.com -------------- next part --------------
2009 Jul 31
0
[LLVMdev] Win64 bugs
Hi Peter, The attached patch is a workaround for the XMM misalignment issue. Basically it uses the fallback method of saving and restoring registers on the stack, which does work correctly with alignment. If I recall correctly it also doesn't save any registers unnecessarily, but I could be wrong about that. Anyway, it's hack, but if all you want for now is to be able to work with Win64
2002 Aug 13
2
Misalignment of <NA> in rownames (PR#1905)
An NA in the rownames of a matrix (or dataframe) causes misalignment when the matrix is printed: R> x <- matrix(1:12, 3,4, dimnames=list(letters[1:3], LETTERS[1:4])) R> rownames(x)[2] <- NA R> x A B C D a 1 4 7 10 <NA> 2 5 8 11 c 3 6 9 12 The bug is in function Rstrlen, in src/main/printutils.c. MatrixRowLabel and MatrixColumnLabel (same file) rely on Rstrlen
2009 Jul 31
6
[LLVMdev] Win64 bugs
Hello! I've just tried generating Win64 code and the result is not that good. First of all, XMM registers are saved without reason to do so. Not only this slows the performance but leads to random crashes too. XMMs are stored to the stack with MOVAPS instruction which requires 16-byte alignment which is not always the case. lli.exe (built in debug mode) randomly crashes on some simple
2014 Feb 02
2
[LLVMdev] LLVM/Clang on Sparc64
On Sun, Feb 2, 2014 at 11:50 AM, Anton Korobeynikov <anton at korobeynikov.info> wrote: > That's really cool! Should we add note to Release Notes? Definitely. I will add a note mentioning about this in ReleaseNotes.rst. > > On Sun, Feb 2, 2014 at 8:05 PM, Venkatraman Govindaraju > <venkatra at cs.wisc.edu> wrote: >> Thanks to Jakob's work on Sparcv9 ABI in
2015 Aug 01
2
OT - parted guidance
On Sat, Aug 1, 2015 at 3:34 PM, Robert Nichols <rnicholsNOSPAM at comcast.net> wrote: > On 08/01/2015 12:05 PM, Chris Murphy wrote: >> >> parted fs resize is deprecated. >> http://savannah.gnu.org/forum/forum.php?forum_id=6837 >> parted fs move can only move a partition into free space >> https://www.gnu.org/software/parted/manual/html_node/move.html >>
2015 Oct 19
2
Support/COFF.h NumberOfSections size-mismatch inside "header"-struct
Hello everyone, while working on a simple PE-Parser, using the llvm/Support/COFF.h Header, to validate if a given File is a PE-File and to read the Machine Field I was experiencing some troubles. It seemed the Fields were somehow misaligned and I could pinpoint the source of the misalignment to be the "NumberOfSections" field inside the "header"-struct (a.k.a.
2010 Mar 18
6
Validating alignment of NTFS/VMDK/ZFS blocks
Good evening, I understand that NTFS & VMDK do not relate to Solaris or ZFS, but I was wondering if anyone has any experience of checking the alignment of data blocks through that stack? I have a VMware ESX 4.0 host using storage presented over NFS from ZFS filesystems (recordsize 4KB). Within virtual machine VMDK files, I have formatted NTFS filesystems, block size 4KB. Dedup is turned on.