search for: spiesse

Displaying 11 results from an estimated 11 matches for "spiesse".

Did you mean: spiess
2009 Nov 02
2
Remote IP Phone's
Hi all, I am wondering what people are doing for security when registering IP phone's remotely if you do not have the equipment to do a VPN tunnel at the remote site. The phone I would be working with mainly is the Polycom lineup. Thanks, Connor Spiess -------------- next part -------------- An HTML attachment was scrubbed... URL:
2009 Jun 21
2
Help on qpcR package
I am using R on a Windows XP professional platform. The following code is part of a bigger one CODE press=function(y,x){ library(qpcR) models.press=numeric(0) cat("\n") dep=y print(dep) indep=log(x) print(indep) yfit=dep-PRESS(lm(dep~indep))[[2]] cat("\n yfit\n") print(yfit) yfit.orig=yfit presid=y-yfit.orig press=sum(presid^2)
2009 Jul 23
1
Network from package functions
Dear R-helpers, does anyone know of some package/function that can build a network from the functions that are implemented in a package, i.e. visualize the cross-references from one function to another in the same or some dependent package? An example would be a function like 'nls' on top of the hierarchy and then a network of nodes from the functions that are called within 'nls'
2008 Mar 25
1
Error propagation
Dear R-helpers, I´m in the context of writing a general function for error propagation in R. There are somehow a few questions I would like to ask (discuss), as my statistical knowledge is somewhat restricted. Below is the function I wrote, the questions are marked. Many thanks in advance. propagate <- function(expr, varList, type = c("stat", "raw"), cov = TRUE) {
1999 Jun 20
2
=?ISO-8859-1?B?QXhlbCBIZWxsbWlnIGlzdCBhdd9lciBIYXVzLg==?=
Ich werde au?er Haus sein von 18-06-99 Bis 28-06-99. Ich werde Ihre Nachrichten nach meiner R?ckkehr beantworten. Bitte wenden Sie sich in dringenden F?llen an: Frank R?seler, Tel: MON 3855 Uwe Spiess, Tel: MON 3743 Guido Zimmermann, Tel: MON 3962 Ferdinand Gro?, Tel: MON 2368 lieber Gru? Axel Hellmig
2014 Dec 12
2
Fwd: Fwd: Fwd: Fwd: Fwd: Fwd: Fwd: Fwd: 26.
...sten servieren. Mit Erdbeeren aus der K?hltruhe zum Beispiel oder mit echter Ananas, Mango usw. -------- Weitergeleitete Nachricht -------- Betreff: Fwd: Fwd: 26. Datum: Fri, 05 Dec 2014 21:16:09 +0100 Von: Markus <universe at truemetal.org> An: universe at truemetal.org Moritz - wie viele Spiesse / Zubehoer fuer wie viel Personen? -------- Weitergeleitete Nachricht -------- Betreff: Fwd: 26. Datum: Fri, 05 Dec 2014 21:12:04 +0100 Von: Markus <universe at truemetal.org> An: universe at truemetal.org Anna: Fructoseallergie -------- Weitergeleitete Nachricht -------- Betreff: 26....
2009 Jul 10
1
Dropped Call Problem -- Looking for ideas and a consultant.
Hello Everyone. We have: Asterisk 1.4.21.2 zaptel-1.4.11 libpri-1.4.5 Sangoma A101D Connected to a PRI Cicso 7960G phones (About 30 of them) We have a problem with dropped calls that has going on for a long time. We get up to 5 dropped calls on a bad day. They all seem to be incoming calls. I have a recording of what my users report a dropped call sounds like right before it drops
2012 Sep 19
0
Discrepancies in weighted nonlinear least squares
Dear all, I encounter some discrepancies when comparing the deviance of a weighted and unweigthed model with the AIC values. A general example (from 'nls'): DNase1 <- subset(DNase, Run == 1) fm1DNase1 <- nls(density ~ SSlogis(log(conc), Asym, xmid, scal), DNase1) This is the unweighted fit, in the code of 'nls' one can see that 'nls' generates a vector
2013 Feb 12
0
Deviance and AIC in weighted NLS
Dear All, I encounter some discrepancies when comparing the deviance of a weighted and unweigthed model with the AIC values. A general example (from 'nls'): DNase1 <- subset(DNase, Run == 1) fm1DNase1 <- nls(density ~ SSlogis(log(conc), Asym, xmid, scal), DNase1) Now for a weighted fit: fm2DNase1 <- nls(density ~ SSlogis(log(conc), Asym, xmid, scal),
2014 Dec 12
0
Fwd: Fwd: Fwd: Fwd: Fwd: Fwd: Fwd: Fwd: 26.
...truhe zum Beispiel oder mit echter Ananas, Mango usw. > > > -------- Weitergeleitete Nachricht -------- > Betreff: Fwd: Fwd: 26. > Datum: Fri, 05 Dec 2014 21:16:09 +0100 > Von: Markus <universe at truemetal.org> > An: universe at truemetal.org > > Moritz - wie viele Spiesse / Zubehoer fuer wie viel Personen? > > > > -------- Weitergeleitete Nachricht -------- > Betreff: Fwd: 26. > Datum: Fri, 05 Dec 2014 21:12:04 +0100 > Von: Markus <universe at truemetal.org> > An: universe at truemetal.org > > Anna: Fructoseallergie > > >...
2010 Sep 09
5
Calculating with tolerances (error propagation)
Hello Bernardo, --------- If I understood your problem this script solve your problem: q<-0.15 + c(-.1,0,.1) h<-10 + c(-.1,0,.1) 5*q*h [1] 2.475 7.500 12.625 --------- OK, this solves the simple example. But what if the example is not that simple. E.g. P = 5 * q/h Here, to get the maximum tolerances for P, we need to divide the maximum value for q by the minimum value for h, and