similar to: regression with a*cos(angle+phi)+b

Displaying 20 results from an estimated 200 matches similar to: "regression with a*cos(angle+phi)+b"

1999 Nov 08
1
Nested Designs
Dear R list, What is the proper way to specify a nested model so that the F values agree with the expected mean square errors? Specifically, suppose I have a design where "Heads" are nested within "Machines". I would like to model the following Y_ijk = Mu + Machine_i +Head_j(i) +Error_k(ij). Using the commands below, > summary(aov(Strain~Machine + Head%in%Machine ))
2007 May 18
0
VMWare Client COS 5 Disk Type
When creating a VMWare client that is Cent OS 5, the default SCSI disk is not recognized by the installer. Any suggestions for getting a disk on a COS5 client? Possible alternatives: 1) IDE disk, seems to work fine, 2) ??. Follow up to choice 1, is there a performance hit? While I have you, what is the best choice for "Guest Operating System".? Choices include RHEL, RHEL 4, and
2007 Jul 22
1
Asterisk and COS bits
Is there any way to change COS bits for packets? There is a tos option on sip.conf, does asterisk change COS bits considering tos value? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20070721/8ac39dff/attachment.htm
2007 Jul 23
0
Fwd: Asterisk and COS bits
You have it right, for 1.2, use 'tos=', for 1.4 use 'tos_sip/tos_audio/tos_video'. ________________________________ From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of Al lists Sent: Monday, July 23, 2007 10:21 To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: [asterisk-users] Fwd: Asterisk and COS
2020 Jan 31
0
how to make asterisk set cos values
On Fri, Jan 31, 2020 at 7:34 AM hw <hw at gc-24.de> wrote: > Hi, > > examining the network traffic with wireshark shows that asterisk does not > set > any QoS values at all. > > What do I need to do to make asterisk set QoS values (on Centos 7)? > > The wiki says to use vconfig to set QoS values[1]. What does the > skb-priority > need to be set to? How do
2017 Sep 14
2
Running COS 7.1708 on VirtualBox 5.1.28
Anyone else having issues getting the VB drivers to load on 1708? I keep gettting an "Error: unable to find the sources of your current Linux kernel..." message. I do have kernel-devel installed and I had no issues running 1611 on the same host. Thanks
2017 Sep 14
0
Running COS 7.1708 on VirtualBox 5.1.28
Le 14/09/2017 ? 21:32, Ken Gramm a ?crit?: > Anyone else having issues getting the VB drivers to load on 1708? > > > I keep gettting an "Error: unable to find the sources of your current Linux kernel..." message. > > > I do have kernel-devel installed and I had no issues running 1611 on the same host. I think you mean VirtualBox 5.1.26. And yes, there's some
2016 Dec 01
0
Different results for cos,sin,tan and cospi,sinpi,tanpi
Please note that you need to report your platforms (as per the posting guide), as the C function starts #ifdef HAVE_COSPI #elif defined HAVE___COSPI double cospi(double x) { return __cospi(x); } And AFAICS the system versions on Solaris and OS X behave the same way as R's substitute. On 01/12/2016 09:12, Martin Maechler wrote: >>>>>> Martin Maechler <maechler
2008 Aug 01
1
Solving Yis[i] = a*cos((2*pi/T)*(times[i] - Tau)) + ...
Hi everybody, I am reading the Lomb paper (Lomb, 1976) and I found an interesting equation, and I wish to resolve it using R. I am wondering if anybody has a hint. The equation is: Yis[i] = a*cos((2*pi/T)*(Times[i] - Tau)) + b*sin((2*pi/T)*(Times[i] - Tau)) ... (1) Where T and Tau are constants. I know the "Times" and "Tis" values (in fact these values come from a Time
2017 Sep 14
1
Running COS 7.1708 on VirtualBox 5.1.28
> -----Original Message----- > From: CentOS [mailto:centos-bounces at centos.org] On Behalf Of Nicolas > Kovacs > Sent: Thursday, September 14, 2017 3:34 PM > To: centos at centos.org > Subject: Re: [CentOS] Running COS 7.1708 on VirtualBox 5.1.28 > > Le 14/09/2017 ? 21:32, Ken Gramm a ?crit?: > > Anyone else having issues getting the VB drivers to load on 1708? >
2004 Aug 06
1
Fixed-point cos/acos
Hi, Before I try to code this myself, I'd like to know if anyone has a fixed-point routine to compute the cos and acos functions. All I need is around 3-digit accuracy. Thanks. Jean-Marc -- Jean-Marc Valin, M.Sc.A., ing. jr. LABORIUS (http://www.gel.usherb.ca/laborius) Université de Sherbrooke, Québec, Canada -------------- next part -------------- A non-text attachment was
2007 Jan 08
0
[846] trunk/wxruby2/swig/classes/MultiChoiceDialog.i: Fixed - don''t use Ruby 1.9-style API calls cos this breaks older SWIGs
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!-- #msg dl { border: 1px #006 solid; background: #369; padding:
2020 Jan 31
3
how to make asterisk set cos values
Hi, examining the network traffic with wireshark shows that asterisk does not set any QoS values at all. What do I need to do to make asterisk set QoS values (on Centos 7)? The wiki says to use vconfig to set QoS values[1]. What does the skb-priority need to be set to? How do you use vconfig on interfaces that are not VLAN interfaces? Is it generally impossible to set QoS values on
2016 Dec 01
2
Different results for cos,sin,tan and cospi,sinpi,tanpi
Hi, i try sin, cos, and tan. > sapply(c(cos,sin,tan),function(x,y)x(y),1.23e45*pi) [1] 0.5444181 0.8388140 1.5407532 However, *pi results the following > sapply(c(cospi,sinpi,tanpi),function(x,y)x(y),1.23e45) [1] 1 0 0 Please try whether the following becomes all right. diff -ruN R-3.3.2.orig/src/nmath/cospi.c R-3.3.2/src/nmath/cospi.c --- R-3.3.2.orig/src/nmath/cospi.c 2016-09-15
2011 Apr 18
0
heatmap.2 - change column & row locations; angle / rotate
Hi Chakravarthy, [dont forget to Cc the list for useRs with the same Q.] If you're trying to reuduce the isze of your row or column labels, i think the following arguments of heatmap.2 {gplots} is what you want to adjust- 'cexCol' and 'cexRow'. Specifically on my question that you ask about, i found the BioC forum helpful:
2010 Jul 18
0
heatmap.2 - change column & row locations; angle / rotate
Esteemed R user's, I'm struggling to achieve some details of a heatmap using heatmap.2(): 1. Change label locations, for both rows & columns from the default right & bottom, to left and top. Can this be done within heatmap.2()? Or do i need to suppress this default behavior (how) and call a new function to relabel (what) specifying locations? 2. Change the angle of the
2018 Jan 30
2
Calculating angle of a polyline
Dear R users I am trying to find a formula to calculate the angle of a polyline. Is there a way to do this? Many thanks. -- Best Regards Javad Bayat M.Sc. Environment Engineering Alternative Mail: bayat194 at yahoo.com [[alternative HTML version deleted]]
2018 Jan 30
0
Calculating angle of a polyline
A polyline by definition has many angles, so your question is ill-formed. And this is a question about math, not R, so is off topic here. I suggest reading Wikipedia. -- Sent from my phone. Please excuse my brevity. On January 29, 2018 11:10:02 PM PST, javad bayat <j.bayat194 at gmail.com> wrote: >Dear R users >I am trying to find a formula to calculate the angle of a polyline. Is
2005 Jun 20
0
"Angle" address with empty "display name"
Some clients are sending from addresses like <someone at somewhere.org> i.e. without a "friendly" name. It seems to me from RFC2822 that you should either have "Display Name <someone at somewhere.org>" or just "someone at somewhere.org" (both without the quotes). Dovecot, not unreasonably, treats "<someone at somewhere.org>" as having an
2016 Dec 22
0
The left angle bracket at the beginning of the certificate path
dovecot 2.2.27 (c0f36b0) openSUSE Tumbleweed x86_64 https://forums.opensuse.org/showthread.php/521796-Dovecot-doveconf-Fatal-execvp(-usr-lib-dovecot-managesieve)-failed-Argument-list-too-long Faced with an unpleasant situation, when ssl_client_ca_file options are specified path to the left angle bracket, as in options ssl_key ssl_cert ssl_ca path is so. This doveconf shows no syntax error, and the