search for: nii

Displaying 20 results from an estimated 22 matches for "nii".

Did you mean: ni
2006 Sep 01
1
integration problem with gamma function
...matica script into R. The whole script is at the end of the email (with initial values for easy reproduction) and can be pasted directly into R. The problematic part (which is included below of course) is <--- Original Mathematica ---> (* p_svbar *) UiA = Ni (Dsi - 2Di A + A^2)/2; UiiA = Nii (Dsii - 2Dii A + A^2)/2; psvbar = NIntegrate[1/(UiA^(Ni/2)) 1/(UiiA^(Nii/2)) Gamma[Ni/2,UiA/(sH^2),UiA/(sL^2)] Gamma[Nii/2,UiiA/(sH^2),UiiA/(sL^2)],{A,L,H}, MinRecursion->3]; PSVbar = psvbar/(4 Log[sH/sL]); Print["p(s?v|D_1D_2I) = const. ",N[PSVbar,6]]; </---> <-...
2007 Dec 13
4
Weird Mongrel error: Not starting.
...mm same code different boxes and it is working says to me that there is something wrong with the configuration on the other server which is not playing ball with my code. FYI: I have backgroundrb in vendor/plugins which starts up fine. Any help in the right direction would be appreciated. Thanks Nii Amon. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/mongrel-users/attachments/20071213/1fbd18c2/attachment.html
2011 Sep 23
2
Issue with seek() on gzipped connections in R-devel
...o occur all the time - I tried to create a small example file to illustrate it, but the problem didn't occur. However, it can be seen with a file I use for testing my packages, which is available through the URL <https://github.com/jonclayden/tractor/blob/master/tests/data/nifti/maskedb0_lia.nii.gz?raw=true>: > con <- gzfile("~/Downloads/maskedb0_lia.nii.gz","rb") > seek(con, 352) [1] 0 Warning message: In seek.connection(con, 352) : seek on a gzfile connection returned an internal error > seek(con, NA) [1] 190 The same commands with the same file wor...
2016 May 09
2
Replacing an instruction in a post-RA pass
...MachineOperand& reg2 = MI.getOperand(1); MachineOperand& reg3 = MI.getOperand(2); if(reg1.isReg() && reg2.isReg() && reg3.isReg()){ if((reg1.getReg()-8)%4 == (reg3.getReg()-8)%4){ MachineBasicBlock::instr_iterator NII = std::next(II); //conflict if reg1 and reg3 are in same bank errs() << "Conflict: "; printOp(opcode); errs() << " has " << num_operands << " register operands:\n";...
2007 Jun 18
1
Problem with binding data-frames
.... I want to combine these datasets together for analysis. Datasets from day 2, have all the same columns than datasets from day 1. However in addition, there are few columns more in day 2. Thus, using rbind for this, results a error, because the objects are not the same length. Error in paste(nmi[nii == 0L], collapse = ", ") : object "nii" not found In addition: Warning message: longer object length is not a multiple of shorter object length in: clabs == nmi What I need, is to combine all the six together, and give for example NA-value in day 1, for those...
2007 Dec 11
2
Mongrel not starting: `initialize_without_backlog'': Cannot assign requested address - bind(2) (Errno::EADDRNOTAVAIL)
...there were no processes holding onto the ports. I suspect that it is something that is in the configuration for that particular application because there are other applications on the server which are still working fine. Has anyone else experienced this before and what was the resolution. Thanks Nii Amon -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/mongrel-users/attachments/20071211/a00c7db9/attachment-0001.html
2018 Apr 13
1
[PATCH net] virtio-net: add missing virtqueue kick when flushing packets
We tends to batch submitting packets during XDP_TX. This requires to kick virtqueue after a batch, we tried to do it through xdp_do_flush_map() which only makes sense for devmap not XDP_TX. So explicitly kick the virtqueue in this case. Reported-by: Kimitoshi Takahashi <ktaka at nii.ac.jp> Tested-by: Kimitoshi Takahashi <ktaka at nii.ac.jp> Cc: Daniel Borkmann <daniel at iogearbox.net> Fixes: 186b3c998c50 ("virtio-net: support XDP_REDIRECT") Signed-off-by: Jason Wang <jasowang at redhat.com> --- drivers/net/virtio_net.c | 11 +++++++++-- 1 file...
2015 Oct 07
3
read.table reads "i" as NA_complex_
...quot;i\ni\ni\ni\n"))) 'data.frame': 4 obs. of 1 variable: $ V1: cplx NA NA NA ... > str(type.convert("i")) cplx NA If there are other strings in the column it makes the column character so most people will not notice > str(read.table(text=c("i\nii\niii\niv\n"))) 'data.frame': 4 obs. of 1 variable: $ V1: Factor w/ 4 levels "i","ii","iii",..: 1 2 3 4 Is this intended? It surprised me. Bill Dunlap TIBCO Software wdunlap tibco.com [[alternative HTML version deleted]]
2015 Jul 31
0
EFI: ipxe + syslinux = Failed to read blocks: 0xC
...been merged to the master branch on ipxe.org yet. Unfortunately whichever version of IPXE or syslinux I try, the result is always: ? ? iPXE 1.0.0+ (87981) -- Open Source Network Boot Firmware -- ? ? http://ipxe.org ? ? Features: DNS HTTP TFTP EFI Menu ? ? net0: ec:b1:d7:75:e5:24 using NII on NII-PCI02:00.0 (open) ? ? ???[Link:down, TX:0 TXE:0 RX:0 RXE:0] ? ? ???[Link status: Unknown (http://ipxe.org/1a086194)] ? ? Configuring (net0 ec:b1:d7:75:e5:24)...... ok ? ? net0: 10.X.167.253/255.255.0.0 gw 10.X.255.254 ? ? Next server: 10.X.255.254 ? ? Filename: efi64/syslinux-87020-deb...
2007 Jan 12
0
Minor logical bug in rbind.data.frame ?
...)) > rbind(foo, bar, fifi) Error in match.names(clabs, names(xi)) : names do not match previous names: v4 > ## Output looks fine. ## Third data frame is missing a column. > gaga <- data.frame(v1 = c('a', 'e'), v2 = c(7, 8)) > rbind(foo, bar, gaga) Error in paste(nmi[nii == 0], collapse = ", ") : object "nii" not found In addition: Warning message: longer object length is not a multiple of shorter object length in: clabs == nmi > This somewhat cryptic error message results because the second portion of the second if() test clause in the...
2015 Jul 31
5
EFI: ipxe + syslinux = Failed to read blocks: 0xC
...ven't been merged to the master branch on ipxe.org yet. Unfortunately whichever version of IPXE or syslinux I try, the result is always: iPXE 1.0.0+ (87981) -- Open Source Network Boot Firmware -- http://ipxe.org Features: DNS HTTP TFTP EFI Menu net0: ec:b1:d7:75:e5:24 using NII on NII-PCI02:00.0 (open) [Link:down, TX:0 TXE:0 RX:0 RXE:0] [Link status: Unknown (http://ipxe.org/1a086194)] Configuring (net0 ec:b1:d7:75:e5:24)...... ok net0: 10.X.167.253/255.255.0.0 gw 10.X.255.254 Next server: 10.X.255.254 Filename: efi64/syslinux-87020-debug.efi...
2010 Jun 16
0
R CMD check error in v2.12.0
...NUMBER!* > ## These files should be viewable in, for example, FSLview > ## Make sure you adjust the min/max values for proper visualization > data <- readNIfTI("test-nifti-image-uint8", verbose=TRUE) fname = test-nifti-image-uint8 files = test-nifti-image-uint8.nii.gz nii = test-nifti-image-uint8.nii.gz vox_offset = 1392 niftiExtension detected! Error in read.nifti.content(fname, gzipped = TRUE, verbose = verbose, : -- extension size (esize) has overshot voxel offset -- Calls: readNIfTI -> read.nifti.content Execution halted Please dr...
2010 Sep 25
4
Help required
Is it possible to read jpeg files into R? If yes please guide, Thanks.. I tried to search many time but failed to do. Thankis in advance.. with Best Regards, Malik Shahzad Visiting Researcher National Institute of Informatics (NII) Tokyo, Japan Doctoral Student Asian Institute of Technology (AIT) Bangkok, Thailand +66-8-7676-5616 [[alternative HTML version deleted]]
2006 Dec 02
0
fixup for debug package and R2.4.0
...roblem Mark Bravington mark.bravington at csiro.au mvbutils:::assign.to.base( 'rbind.data.frame', function (..., deparse.level = 1) { match.names <- function(clabs, nmi) { if (all(clabs == nmi)) NULL else if (length(nmi) == length(clabs) && all(nii <- match(nmi, clabs, 0))) { m <- pmatch(nmi, clabs, 0) if (any(m == 0)) stop("names do not match previous names") m } else stop("names do not match previous names:\n\t", paste(nmi[nii ==...
2007 Nov 22
0
How to get result from do_work in a worker
...backgroundrb worker class that does the processing for the action. Now my problem is how to retrieve the result for the task when the worker is done processing since the MiddleMan.new_worker returns just the job_key. Any ideas about how I could retrieve the result from the worker class? Thanks. Nii Amon -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/backgroundrb-devel/attachments/20071122/400d5e7d/attachment.html
2015 Oct 07
0
read.table reads "i" as NA_complex_
...t; 'data.frame': 4 obs. of 1 variable: > $ V1: cplx NA NA NA ... >> str(type.convert("i")) > cplx NA > > If there are other strings in the column it makes the column character so > most people will not notice >> str(read.table(text=c("i\nii\niii\niv\n"))) > 'data.frame': 4 obs. of 1 variable: > $ V1: Factor w/ 4 levels "i","ii","iii",..: 1 2 3 4 > > Is this intended? It surprised me. > > Bill Dunlap > TIBCO Software > wdunlap tibco.com > > [[alternat...
2008 Mar 18
2
rpm build machines
How similar should my rpm build machine be to my target deploy machines? Like, do you have to build on a multi-core machine if you plan to run on a multi-core machine? Or as long as the arch is the same, nothing else matters? johnn
2009 Feb 22
3
Which email clients support SMTP/IMAP via STDIN&STDOUT of proxy command?
...port SMTP/IMAP via STDIN&STDOUT of proxy command? I would like to be able to use local and remove dovecot to access maildir *without* running dovecot daemons. -- [pl>en: Andrew] Andrzej Adam Filip : anfi at onet.eu If the future navigation system [for interactive networked services on the NII] looks like something from Microsoft, it will never work. -- Chairman of Walt Disney Television & Telecommunications
2002 May 03
2
merge (PR#1510)
...all.x=TRUE, sort=TRUE ) Error message: Error in match.names(clabs, names(xi)) : names don't match previous names: year, mecode Traceback: 10: stop(paste("names don't match previous names:\n ", paste(nmi[nii == 0], collapse = ", "))) 9: match.names(clabs, names(xi)) 8: rbind(...) 7: rbind(x[, by.x], y[, by.y]) 6: do.call("paste", c(rbind(x[, by.x], y[, by.y]), sep = "\r")) 5: merge.data.frame(unique(mvoteint.classd), unique(subset(dimens.mpp, select = c(na...
2004 Jun 07
1
Xtable giving an interesting problem
I'm using the current version of xtable for 1.9.0 and I have an interesting error: Error in match.names(clabs, names(xi)) : names don't match previous names: F value, Pr(>F) In addition: Warning message: longer object length is not a multiple of shorter object length in: clabs == nmi This is produced in the following manner: >data.trans <-