search for: specificially

Displaying 20 results from an estimated 50 matches for "specificially".

Did you mean: specifically
2005 Jan 06
5
How to avoid rounding of matrix elements?
Hi all R-users, If I have a matrix with numeric elements as follows, the values are rounded when I try to refer to a specifici element using [], the value is rounded. The same thing happens if the matrix is read from a file, the values are stored to the correct precision but then when I try to refer to a specific element (such as using [], it is rounded. How do I avoid this rounding?
2017 Jun 05
3
VirtRegMap invariant: no reserved physical registers?
...er::rewrite() fail: unsigned VirtReg = MO.getReg(); unsigned PhysReg = VRM->getPhys(VirtReg); ... assert(!MRI->isReserved(PhysReg) && "Reserved register assignment"); Indeed there is a case where PhysReg may be a reserved physical register. Specificially, RegAllocPBQP::finalizeAlloc() may select a physical register thusly: const TargetRegisterClass &RC = *MRI.getRegClass(LI.reg); PReg = RC.getRawAllocationOrder(MF).front(); ... VRM.assignVirt2Phys(LI.reg, PReg); The documentation for TargetRegisterClass::getRawAllocation...
2007 Apr 16
2
Vorbis on a TI C6713
Hi all, What are the steps to get Vorbis running on a TI C6713? I know I should use the floating point code, but am unsure what files I should compile in Code Composer Studio. Specificially, I am using the TMS320C6713 to receive Vorbis through a manufactured UART Daughter Card and output raw audio through its audio jack. Thanks for your help, Matt Hutchinson -- Matt Hutchinson Rice University - Martel College 99 Sunset Blvd. Houston, TX 77005 cell: 480.577.9048 -------------- next...
2005 May 03
1
[LLVMdev] llvm control flow analysis?
I'm asking for a stepping stone to figure out how to get some control flow analysis on llvm IR. I need to find out specificially sections of if/else, for loops, and while loop locations in the original source code. I can look at the Cbackend and look there, but would there be any analysis code already written in your library that takes care of that.
2004 Aug 06
1
Source XML for status.xsl
Alright, first off: Where is the password for admin specificied? In the <admin></admin> section of the XML config? Shouldn't there be a directory admin/ in my webroot for icecast? Currently the only files in my webroot are status*.xsl and some experimental xsl files. --thanks Michael Edwards http://www.walledcity.ca >===== Original Message From Michael Smith
2008 Aug 12
2
memory usage in rsync 3.0.3 -- how much RAM should I have to transfer 13 million files?
Hi. I am trying to recursively rsync a directory containing 13 million files. Right now this is killing my server, in terms of memory usage. I've upgraded from rsync 2.6.9 to 3.0.3 on both ends, but memory usage is still too high. I killed the rsync process when it reached 256 MB in size. I only have 1 GB of RAM in this server. We've planned an outage to upgrade it to 3 GB, but
2013 Feb 15
1
How to read/set ulimit for non-root asterisk process ?
...t find much online doc on ulimit and its usage. My main source is http://ss64.com/bash/ulimit.html and I also found this http://lists.digium.com/pipermail/asterisk-dev/2006-October/024091.htmlwhere I could read >* And what does 'ulimit -n' say for your Asterisk process?* 1. How can I specificially read "ulimit -n" for asterisk, for instance when asterisk is run by an asterisk user which has no login or shell ? 2. Is there an easy and safe way to increase the number of files opened by asterisk ? Regards -------------- next part -------------- An HTML attachment was scrubbed... URL...
2013 Jan 16
1
Read.dta and Write.dta Binary Data Error
Thanks in advance. I pass data sets between R and Stata and think dta files would be the best files for this. To do this I can use package foreign or package memisc. I mostly use foreign, although have used memisc and this problem mostly didn't happen, but created errors at other times. I have a csv data set (and created a test case) with with at least one column completely missing. This
2008 May 14
1
Time differences (as.difftime?) issue
Dear all, I have a vector generated using the function strptime: > my.dt [1] "2004-04-19 08:35:00 W. Europe Daylight Time" "2004-04-19 09:35:00 W. Europe Daylight Time" "2004-04-19 11:35:00 W. Europe Daylight Time" [4] "2004-04-19 13:35:00 W. Europe Daylight Time" "2004-04-20 07:50:00 W. Europe Daylight Time" > class(my.dt) [1]
2016 Jan 06
2
what browser plugin provides Quicktime on 7.2?
> Date: Tuesday, January 05, 2016 21:00:17 -0500 > From: Fred Smith <fredex at fcshome.stoneham.ma.us> > > Several of the plugins I used on C6 no longer seem to be available, > so I can't figure out what to use for Quicktime > (apple.com/trailers). > > Advice appreciated! > > Fred These play fine with Chrome. The problem with Firefox appears to be that
2001 Jan 30
1
would like to configure help.start() point to a http:// style url rather than ~/.R/doc etc (fwd)
In our situation we sometimes run netscape from a another platform via ssh and so the machine netscape is running on may not contain any R software, or more precisely the user home account on the machine running netscape is different from the account they initiated R and so having netscape look into there home directory will NOT work. It would desirable to have easy way to specificy a
2006 Nov 04
1
ActionMailer Sending Two text/plain Parts
...e as an argument so I have one action that handles multiple emails. The email sends just fine, and the correct email templates are used, but ActionMailer is throwing in its own text/plain section in addition to the one I specify. Does anyone have any ideas on why this might be occuring, when I am specificially specifying a "text/plain" part? Thx in advance, here is the code: notifier.rb code ------------------ def dynamic_mailer(email_address, subject, template_to_use) @from = "no-reply@nothing.com" @subject = subject @recipients = email_address part :content_type =...
2014 Nov 07
3
Is there a way to disable libvirt qemu monitor while creating kvm vm using virsh?
Hi, Now for some reason, I need to add “ -qmp tcp:127.0.0.1:1235” when creating a KVM VM using libvirt. This command meaning in “qemu-kvm --help” is: -qmp dev like -monitor but opens in 'control' mode. I added command-line equivalent options into the xml file, like below format: <qemu:commandline> <qemu:arg value="-s"/> <qemu:arg
2002 Jan 18
3
How do I know if the deviance of a glm fit was fixed?
I'm writing functions that need to behave differently for GLMs like binomial and Poisson with fixed deviance, and those like normal or gamma or quasi where the deviance is estimated from the data. Given a glm object, is there a simple way to tell this directly, or do I have to look at the name of the family? Duncan Murdoch
2014 Nov 11
2
Re: Is there a way to disable libvirt qemu monitor while creating kvm vm using virsh?
...irt automatically adds the monitor options upon VM >> creation. > > As I understand it, libvirt uses its own APIs to handle interactions > with QEMU monitor console, e.g. qemuMonitorOpen(), etc. > > If you're fine delving into code, you might want to libvirt > sources, specificially this directory: libvirt/src/qemu. Messing up the source code is the last thing I want to do. I am using the default libvirt coming with CentOs6.5, last time I modified and installed the libvirt source code, I got seriously version-not-match problem. > >> Is there a way to disable this a...
2002 Oct 13
1
barplot(): X-Axis Labels
Hello all. I have a simple barplot with sixteen different segments. When I plot my data, only five or six of the labels are showing in the x-axis. How do go get them all to show? Can I set them at a 45.degree angle? Thank you. Jess -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send
2016 Jan 06
0
what browser plugin provides Quicktime on 7.2?
...link and installed and set up the user agent switcher, as described there, and now firefox 38.5.0 ESR plays apple trailers! the other posts there indicated you also needed a bug fix from mozilla, but they're also speaking of OSX, so I don't know (nor have a lot of interest) if it's OSX specificially, or just FF 4x or what, but it's working fine today for me on Centos 7.2. Also, I had no clue that apple served them up in anyform other than quicktime. HTML-5 rocks! thanks for the pointer to that thread! Fred -- ---- Fred Smith -- fredex at fcshome.stoneham.ma.us -------------------------...
2004 Aug 06
0
icecast &quot;multicasting&quot; ?
At 04:30 PM 12/25/2001 -0800, you wrote: >Can icecast do something which I think is called "multicasting", i.e. >can I use an icecast server to send audio streams to remote servers >which the listeners would connect to? > >And if this can be done, what software does the "multicasting"? "multicasting" is actually part of the of the tcp/ip suite.
2006 Mar 18
1
Fixtures and single table inheritance
I''m wondering what the accepted method for doing unit tests on STI models is. I tried to create a fixture for the class but Rails tries to load that data into the non-existent child table. I could create a fixture named for the real, parent table, but then it would be very difficult to test for the individual functionality and integrity of each sub-class. I saw this page
2009 Oct 08
1
unordered multinomial logistic regression (or logit model) with repeated measures (I think)
I am attempted to examine the temporal independence of my data set and think I need an unordered multinomial logistic regression (or logit model) with repeated measures to do so. The data in question is location of chickens. Chickens could be in any one of 5 locations when a snapshot sample was taken. The locations of chickens (bird) in 8 pens (pen) were scored twice a day (AMPM) for 20 days