search for: outfile1

Displaying 4 results from an estimated 4 matches for "outfile1".

Did you mean: outfile
2010 Jun 05
1
Write.fwf works from Mac, throws different number of row error in Windows
...xt file with two parts: 1) a set of column names, 2) the processed data table. I wrote and tested the program on my Mac, and it worked fine. However, on the windows machine, where I intend the work to be done, when I run the following line (last line of the script): > write.fwf(outframe,file=outfile1,sep="",quote=FALSE,rownames=FALSE,colnames=FALSE, + width=c(4,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8),append=TRUE,justify='right') I get the following error: Error in data.frame(colname = colnamesMy, nlevels = 0, position = 0, width = 0, : arguments imply differing number of r...
2017 Nov 15
0
vcut(1) and its manpage
...+++ b/vcut/vcut.1 @@ -1,30 +1,30 @@ -.\" Process this file with -.\" groff -man -Tascii vcut.1 -.\" -.TH VCUT 1 "2003 September 1" "Xiph.Org Foundation" "Vorbis Tools" - -.SH NAME -vcut \- cuts Ogg Vorbis files - -.SH SYNOPSIS -.B vcut -.I infile.ogg -.I outfile1.ogg -.I outfile2.ogg -.I [ cutpoint | +cutpoint] - -.SH DESCRIPTION -.B vcut -reads an Ogg Vorbis audio file and splits it at the given cutpoint, which is a -sample number. If the cutpoint is prefixed with '+', the cutpoint is an -integer number of seconds. - -.SH AUTHORS - -.TP -Program A...
2011 May 10
1
Saving multiple 3x3 TIFF graphics inside a loop
...t;],dt1[, "DV"], type="n") lines(dt1[, "IDV"], dt1[, "DV"], type="b", col=1,lwd=3,pch=1) title(paste(i),col=8,cex=.8) if(i==9) dev.off ## close file } dev.off() The idea is to save 2 files with 3x3 layouts but I only get one subject in Outfile1. OS: Windows 7 64 bits R version 2.13.0 Many Thanks, John [[alternative HTML version deleted]]
2005 Jan 02
3
Recursively vcutting
...bilities are lacking. ?Does anyone know of the existence of a script which would do this, or know how I'd go about making one? So say I had a 60 min file (60mins.ogg) I'd like to issue a command something like > split outfilename 60mins.ogg 600 which would do a series of vcuts vcut outfile1.ogg tmpfile.ogg 60mins.ogg +600 vcut outfile2.ogg tmpfile2.ogg tmpfile.ogg +600 /bin/rm tmpfile.ogg vcut outfile3.ogg tmpfile3.ogg tmpfile2.ogg +600 /bin/rm tmpfile2.ogg ....... until it's reached the end of the file I'm not sure how to tell the script how long the file is, I'm sur...