search for: amp

Displaying 20 results from an estimated 1034 matches for "amp".

Did you mean: am
2010 Jul 01
2
Sweave function
Dear list, I have a question about the interaction between R code and Latex language trough the Sweave function in the package "utils". What I'm trying to do is to write a report. Contrary to the examples shown in the Sweave Manual in which table already constructed by R are "exported" on Latex files, what I would like to do is to build a table in which I combine text and specific columns of my data frame. I will give you the following example to be much more clear. Suppose I have a dat...
2011 Jan 28
2
internet connection tester script
http://pastebin.com/raw.php?i=rykHdvBh bix.hu and www.yahoo.com are "pingable" test sites. 127.0.0.1 could not be pinged [firewall drops all icmp] i have a "oneliner" that echoes if theres "internet connection or no". $ ping -W 1 -c 2 bix.hu >& /dev/null && ping -W 1 -c 2 www.yahoo.com >& /dev/null && echo "internet connection ok" || echo "no internet connection" internet connection ok $ ping -W 1 -c 2 127.0.0.1 >& /dev/null && p...
2005 Dec 08
3
scoping issues?
Can anyone please help me understand whats happening here? Thanks Tom getAmpRatio<-function(v_amps){ #calculates the amplitude ratios between the 3 largest amps and the rest bigamp<-0 map<-rep(TRUE,length(v_amps)) for(iLoc in 1:3){ bigamp<-bigamp+max(v_amps) map[which.max(v_amps)]<-FALSE v_amps<-v_amps[map]...
2006 Jan 28
7
Setting up FSTAB
...PCI PCI: System does not support PCI Grant table initialized IA-32 Microcode Update Driver: v1.14-xen <tigran@veritas.com> VFS: Disk quotas dquot_6.5.1 Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) Initializing Cryptographic API isapnp: Scanning for PnP cards... isapnp: No Plug &amp; Play device found PNP: No PS/2 controller found. Probing ports directly. i8042.c: No controller found. io scheduler noop registered io scheduler anticipatory registered io scheduler deadline registered io scheduler cfq registered RAMDISK driver initialized: 16 RAM disks of 16384K size 1024 blocksi...
2010 Sep 16
1
Help for an absolutely r-noob
...follows: setwd("E:/") ##### (1) Read data ### dat <- read.table("Komfort_Tatsaechliche_ID_Versuchsreihe_1.txt", header=TRUE, sep="\t", dec=",") # tab-getrennte Textdatei names(dat) <- c("id", "resp", "amp") dat$id <- factor(dat$id) # kategoriale Variablen als Faktor definieren dat$amp <- as.numeric(gsub("^([0-9]),([0-9]+) Nm$", "\\1.\\2", dat$amp)) ##### (2) Explorative plots ##### library(lattice) xyplot(resp ~ amp|id, dat, type=c("g","p",...
2020 Sep 27
2
CentOS 8 Install as DOMU in PV Environment
...will use Centos 7 or other operating systems instead. Thanks. Christoph <mangel at gmx.de> wrote: >the fastest/best mode is still pvh... use the kernel from elrepo it >supports the mode > >--- >------ >Greetz > >Am 19.09.2020 19:08, schrieb Rados?aw Piliszek: >&amp;gt; Hi, >&amp;gt; >&amp;gt; In general, PV tends not to be supported in newer distribution >&amp;gt; releases. >&amp;gt; This is mostly due to HVM performance and flexibility nowadays, which >&amp;gt; just was not the case back in the days when PV ruled. >&amp;gt; >&amp;gt; I a...
2013 Apr 14
2
[LLVMdev] C++AMP -> OpenCL (NVPTX) prototype
After reading about Intel's 'Shevlin Park' project to implement C++AMP in llvm/clang, and failing to find any code for it, I decided to try to implement something similar. I did it as an excuse to explore and hack on llvm/clang, which I hadn't done before, but it's now at the point where it will run the simplest matrix multiplication sample from MSDN, so...
2006 Aug 25
3
RJS Error: Element.update is not a function
Hi, I have implemented some RJS code and I have the same exact code in 2 different places. In one place I get the error "Element.update is not a function" and the other place works fine. Any idea why this error is coming? Breaking my head. -Vinod --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on
2015 Dec 02
2
[RFC PATCH 4/5] subdev/clk: print the base clocks
...(const struct nvkm_clk_func *func, struct nvkm_device *device, > int index, bool allow_reclock, struct nvkm_clk *clk) > { > + struct nvkm_bios *bios; > int ret, idx, arglen; > const char *mode; > + struct nvbios_baseclock_header header; > > nvkm_subdev_ctor(&amp;nvkm_clk, device, index, 0, &amp;clk->subdev); > + bios = device->bios; > + > + if (bios &amp;&amp; !nvbios_baseclock_parse(bios, &amp;header)) { > + struct nvbios_baseclock_entry base_entry, boost_entry; > + if (nvbios_baseclock_get_entry(bios, &amp;header, header.base_entry...
2005 Sep 09
2
AMP 1.10.009 released!
Hello all, Asterisk Management Portal 1.10.009 has now been released. This exciting new version has several notable additions (listed below). The AMP homepage is http://amp.coalescentsystems.ca. Here you'll find links to the download, install guide, and documentation wiki. As usual, please use amportal-users mailing list for discussions about AMP: https://sourceforge.net/mail/?group_id=121515 AMP 1.10.009 changes: - Optional separation...
2017 Apr 06
4
[Bug] FTS double escaping
...s using FTS/Solr. I was tcpdumping the communication between Dovecot and Jetty/Solr and noticed that 'From' headers, which includes also sender's name, are double escaped. This is what was Dovecot sending to Solr: </field><field name="from">Name Surname &amp;amp;lt;test at example.com&amp;amp;gt;</field></doc></add> As you can see, characters < and > were escaped to &amp;lt; and &amp;gt; which were, again, escaped to &amp;amp;lt; and &amp;amp;gt;. This is doing problems while trying to index whole e-mail address, as Solr se...
2013 Apr 14
0
[LLVMdev] C++AMP -> OpenCL (NVPTX) prototype
----- Original Message ----- > From: corngood at gmail.com > To: llvmdev at cs.uiuc.edu > Sent: Saturday, April 13, 2013 9:13:57 PM > Subject: [LLVMdev] C++AMP -> OpenCL (NVPTX) prototype > > After reading about Intel's 'Shevlin Park' project to implement > C++AMP in > llvm/clang, and failing to find any code for it, I decided to try to > implement > something similar. I did it as an excuse to explore and hack on > ll...
2015 Dec 02
0
[RFC PATCH 5/5] clk: allow boosting only when NvBoost is set
...lk/base.c > > index df9173e..ae76601 100644 > > --- a/drm/nouveau/nvkm/subdev/clk/base.c > > +++ b/drm/nouveau/nvkm/subdev/clk/base.c > > @@ -166,6 +166,12 @@ nvkm_cstate_new(struct nvkm_clk *clk, int idx, struct > > nvkm_pstate *pstate) > > if (domain->flags &amp;amp; NVKM_CLK_DOM_FLAG_CORE) { > > u32 freq = nvkm_clk_adjust(clk, true, pstate->pstate, > > domain->bios, cstepX.freq); > > + if (domain->flags &amp;amp; NVKM_CLK_DOM_FLAG_BASE_CLOCK_CORE) { > > + if (clk->boost_mode == 0 &amp;amp;&amp;amp; freq > clk->bas...
2005 Mar 28
4
AMP-1.10.007 Released!
Hello all, The "Secret Agent" final release of the Asterisk Management Portal is now available for download: http://amp.coalescentsystems.ca/ This exciting new release adds a great deal of functionality and flexibility. Thank you for all the contributions and feedback! 1.10.007 - Added AMP Users (multi-department, basic multi-tenant) - Added incremental upgrade script (install_amp) - Use /etc/amportal.conf to t...
2005 May 11
3
Astlinux & AMP
Hi all, Has anyone had experience with installing AMP on a soekris box running Astlinux? Is it possible ? Cheers, Callum
2015 Dec 02
0
[RFC PATCH 4/5] subdev/clk: print the base clocks
...unc *func, struct nvkm_device *device, > > int index, bool allow_reclock, struct nvkm_clk *clk) > > { > > + struct nvkm_bios *bios; > > int ret, idx, arglen; > > const char *mode; > > + struct nvbios_baseclock_header header; > > > > nvkm_subdev_ctor(&amp;amp;nvkm_clk, device, index, 0, &amp;amp;clk->subdev); > > + bios = device->bios; > > + > > + if (bios &amp;amp;&amp;amp; !nvbios_baseclock_parse(bios, &amp;amp;header)) { > > + struct nvbios_baseclock_entry base_entry, boost_entry; > > + if (nvbios_baseclock_get...
2005 Feb 03
1
AMP with SUSE9.2 (Apache2)
Hi all, After pinging the AMP userlist at SourceForge, I got a great step by step explanation as to how to set up AMP for Apache2 (some maybe obvious stuff that wasn't in the Newbie Guide). Thanks to Jason Becker of Coalescent Systems. If anyone needs me to post Jason's instructions here, I can, but they are in a thre...
2009 Aug 19
3
Fitting a logistic regression
Hello, I have this data: Time AMP 0 0.2000000 10 0.1958350 20 0.2914560 40 0.6763628 60 0.8494534 90 0.9874526 120 1.0477692 where AMP is the concentration of this metabolite with time. If you plot the data, you can see that it could be fitted using a logistic regression. For this purpose, I used this c...
2006 Feb 13
1
Bug in AMP 1.10.010 in sip outbound callerid
...es, the only place where the field outbound CID you entered is recorded is in the users table. If you manually edit etc/asterisk/sip_additional.conf and adjust the line callerid=what I would like to see <567>, then reload the configuration with RELOAD from * console (NOT using web interface AMP, otherwise you loose your modification) you can see on the remote phone what I would like to see <567> This bug is new to 1.10.010, or at least was not present in the last amp version, where the fieldname was called callerid (and not outbound callerid) I would like to know if this bug can b...
2005 Jan 11
3
AMP Anyone?
Hi all, I have been using Asterisk for a while now, and loving it. Just about to update to 1.0 (running like 0.93) I was wondering if anyone has any expertise in the implementation of AMP onto an existing Asterisk install? The instructions for it all deal with a fresh install of Asterisk, and I would hate to be forced to re-configure. Any advise would be greatly appreciated. David A. Morrow Technical Systems Lead Autodata Solutions Company David.Morrow@Autodata.Net http://www.aut...