Displaying 20 results from an estimated 94 matches for "unformatted".
2008 Jan 07
2
output into an unformatted direct fortran file
Hello everybody
Is there a way to output data into a file like the unformatted, direct
fortran files? That's the kind that can be opened with:
open(30, file='file', format='unformatted', access='direct', rec=1000,
convert='big endian')
Thank you in advance
Kostas Douvis
2012 Feb 15
1
Using readBin to read binary "unformatted" output files from Fortran?
Hello,
I'm wondering if I can get some help with reading Fortran binary "unformatted" output files into R.
The Fortran output files were generated in Ubuntu 10.04 LTS using gfortran4.4, on a 32bit Intel Core 2 Duo 3.16 GHz machine, with little-endian and record marker lengths equal to 4.
The machine I'm currently trying to read this Fortran output file is a Macbook Pro...
2010 Jan 07
2
Problem with writeBin and importing into gfortran compiled programs
...ini <- runif(1000)
>writeBin(whini,"fwhini.dat")
f90 part
------------
PROGRAM foo
INTEGER, PARAMETER :: DP = KIND(1.0D0)
INTEGER :: status
REAL(DP), DIMENSION(10,100) :: whini
OPEN(UNIT=5, FILE='fwhini.dat', STATUS='OLD', ACTION='READ', &
FORM='UNFORMATTED', IOSTAT=status)
READ(5) whini
CLOSE(5)
WRITE(*,*) whini
END PROGRAM
Now, if within the R session I check
>typeof(whini)
[1] "double"
and try
>whini.copy <- readBin("fwhini.dat",what=double(),n=1000)
the copy of whini is right. However, execution of the fortran...
2007 Nov 05
1
R2HTML package and Open Office: text only pasted
...nloaded from CRAN) to paste R (2.6.0)
results output via the clipboard to OpenOffice Writer and Calc
(version 2.3on WinXPPro)
Pasting into Excel gives a formatted table of results (as expected), but
pasting into Calc simply pastes the HTML code. Trying paste special only
gives an option to paste unformatted text.
Equally, with Writer, in the past when I tried this, the results were pasted
as a table, but now they are pasted as HTML code. Again trying to use paste
special, there is only an unformatted text option.
I am using the simplest R2HTML code option, which as a I said, works with
Excel
HTML2c...
2008 Mar 07
0
How to do a time-stratified case-crossover analysis for air pollution data? Unformatted text-version, with an additional note
Dear Experts,
I am trying to do a time-stratified case-crossover analysis on air pollution data and number of myocardial infarctions. In order to avoid model selection bias, I started with a simple simulation.
I'm still not sure if my simulation is right. But the results I get from the "ts-case-crossover" are much more variable than those from a glm.
Is this:
a. Due to the simple
2008 Nov 20
1
extracting data from a list of unformatted text files
Hi,
I want to extract information from a number of text files in a folder. The files are named as : 82534.txt, 82555.txt, 8282787.txt etc.
I give below a sample of the kind of the information in the text file :
########
#(a lot of preceding text)
2008-10-01????? 06:30:12??? ??? ??? ??? 2 of 3
page
#(some lines of text - varies from file to file)
sekvens??? 890
# lines of text
sNo???? start???
2001 Feb 07
2
Patch for unformatted manpages
The attached patch (relative to the current CVS snapshot) uses a perl
script to convert the OpenSSH manpages from the BSD -mdoc format to
the -man format used by other systems. This allows the unformatted
manpages to be installed normally, rather than defaulting to
preformatted pages.
I'd like to see this patch integrated into the portable version of
OpenSSH. Please let me know what you think about this. Thanks!
--
Mark D. Roth <roth at feep.net>
http://www.feep.net/~roth/
-----------...
2011 Apr 23
1
KVM, virsh attach-disk problems
Greetings, list!
I hope you forgive cross-posting - I only now found this list.
I am in the process of configuring a KVM stack of about 8 vms. Mostly I
am concerned about performance, as there will be a lot of I/O.
My last problem is this: I try to add a fresh, unformatted disk
partition to a KVM guest. I follow the directions given here:
http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5/html-single/Virtualization/index.html#proc-Virtualization-Adding_storage_devices_to_guests-Adding_physical_block_devices_to_virtualized_guests
First I check that the mo...
2008 Apr 08
1
reading in a Fortran binary array
...floats
into ASCII and back reading it in R. Furthermore it's much faster to
dump large arrays in binary, as they take up much less space with full
precision -- many decimal points take up many bytes in ASCII versus
four or eight per float in raw. Is there a way to read such a Fortran
unformatted file back into R?
Cheers,
Alexy
2010 Jul 06
2
Logwatch with Postfix and Amavisd-new
I'm trying to get usable reports out of logwatch on this new system.
Looks like the reports are running in an 'unformatted' mode under
Postfix/Amavisd.
I found a couple of programs, postfix-logwatch and amavisd-logwatch.
These sound promising. I am running Amavisd as the frontend to Postfix.
Is anybody running either of these as a logwatch filter?
If so, is it repetitive to run both, or should I consider only...
2011 Jan 11
2
parted usage
Hello again,
Been an interesting day.
I'm attempting to use parted to create a partition on a 28TB volume
which consists of 16x2TB drives configuired in a Raid 5 + spare, so
total unformatted size is 28TB to the OS..
However upon entering parted, and making a gpt label, print reports
back as follows;
Model: Areca ARC-1680-VOL#000 (scsi)
Disk /dev/sdc: 2199GB
Sector Size (logical/physical): 512B/512B
Partition Table: gpt
Why is the disk reporting ~2TB?
Should I be using another par...
2005 Nov 23
2
Changing loadTextURL
I have an InPlaceEditor, when it is clicked on it loads the unformatted
textile text from the server. When i click on menu items, I change the
content to the formatted text and i want to change the file the
InPlaceEditor will load.
I thought a simple
loadTextURL: "getPage.php?page=" + currentPage;
would do. But currentPage is always empty... It''...
2003 Aug 30
2
Bug in plot() with POSIX dates (PR#4024)
...t;1984-01-01","1984-01-02")), c(1,2), col=2)
I get a partially red (col=2) x-axis between and including the first and last tick marks.
Otherwise ok. Only happens with POSIXct or POSIXlt dates.
Also, POSIX dates cannot be used on the y-axis?
POSIXlt gives an error, and POSIXct is unformatted.
Bruce
Using X11 V4.2
2018 Apr 27
0
formating DVR-RW
...ine interface that is roughly
compatible to wodim or cdrecord. (There are also Xfburn, xorriso, and
Brasero's libburn plugin.)
A formatting run looks like this:
cdrskin -v dev=/dev/sr0 blank=format_overwrite
Fred Smith wrote:
> Why would one format a cd/dvd?
DVD-RW can have two states: unformatted sequential and formatted to
"restricted" overwritable.
The latter can take 32 KiB chunks of write data at 32 KiB-aligned addresses.
It does not have to be blanked before re-use. growisofs and libisoburn
can do multi-session on it, like they do with DVD+RW, DVD-RAM, BD-RE.
Unformatted DV...
2012 May 07
14
Has anyone used a Dell with a PERC H310?
I''m trying to configure a DELL R720 (not a pleasant experience) which
has an H710p card fitted.
The H710p definitely doesn''t support JBOD, but the H310 looks like it
might (the data sheet mentions non-RAID). Has anyone used one with ZFS?
Thanks,
--
Ian.
2006 Feb 07
1
Reading in FORTRAN data using R
...*) (dfr(n), n=1,nfault)
read(30,*) (slpdf(n), n=1,nf2)
read(30,*) (slpv(n), n=1,nfault)
read(30,*) (rhofcc(n), n=1,nfault)
read(30,*) (islip(n), n=1,nfault)
read.fwf is not what I need from what I read and neither is read.fortran.
How would I go about reading in the above unformatted Fortran file within R?
Sorry if the question is somewhat trivial, but I am a complete nube to R
(installed it 2 weeks ago) and am just getting caught up to speed.
Thanks for any advice you may have.
Cheers,
t.
--
Tyler Joseph Hayes
PhD Candidate, Geophysics
The University of Western Ontario...
2014 Oct 07
2
[LLVMdev] lld coding style
...he move, which can cause even more pain.
Can't the history be re-written? Would something like the following work?
1) Format the initial commit and commit it to a new repository with
matching header information (date/time, author, etc)
2) For each formatted commit F, find the corresponding unformatted commit
U. Determine the set of all files modified between U and U+1, and reformat
all of these files, placing them in the working copy of the new
repository. Commit this patch to the new repository using the commit
information from U+1.
3) Delete the old repository and rename the new repository t...
2009 Nov 25
8
Docx format ?
Hi,
Is there any way I can read a .docx file on my CentOS desktop ?
Cheers,
Niki
2018 Feb 14
1
Samba 4.6.4 and Excel 2016 access denied if no Group mode permission
...oup[ 4]: 385132
Group[ 5]: 345596
Group[ 6]: 383825
And just after that I appear to be granted an oplock on the original file
[2018/02/12 10:27:10.858168, 5] ../source3/smbd/dosmode.c:287(get_ea_dos_attribute)
get_ea_dos_attribute: Cannot get attribute from EA on file test.xlsx: Error = Unformatted or incompatible media
[2018/02/12 10:27:10.858225, 4] ../source3/smbd/open.c:3262(open_file_ntcreate)
calling open_file with flags=0x0 flags2=0x0 mode=0744, access_mask = 0x80, open_access_mask = 0x80
[2018/02/12 10:27:10.858353, 2] ../source3/smbd/open.c:1351(open_file)
jwalker5 opened file...
2008 Dec 23
2
Tabular output: from R to Excel or HTML
...ly Excel). There are various papers on the R-project.org
website related to this topic, but I haven't been able to find any
particular package supporting this functionality. I have found information
on importing from Excel, calling R functions from Excel, calling COM
interfaces from R, writing unformatted (CSV) data to Excel, etc., but not on
producing nicely-formatted tabular output.
I wouldn't have too much trouble putting together something quick-and-dirty
to produce HTML tables, but if someone's already done it well, I'd rather
take advantage of their work. I also don't know en...