search for: bark

Displaying 20 results from an estimated 385 matches for "bark".

Did you mean: back
2000 Dec 10
1
basic plot() question
Dear all, I try to plot a logstic regression model as follows: Valkror<- read.table("Valkror.txt", header=T) np.bark<- glm(Npinc~bark, family=binomial, data=Valkror) plot.formula(np.bark$fitted.values~ Valkror$bark) The above looks nice but I want to connect the points with a line so I try: plot.formula(np.bark$fitted.values~ Valkror$bark, type="b") but it gives a somewhat! unexpected figure....
2004 Dec 16
3
Qyery on bark equation in floor0 code
Hi All, I need some clarifications regarding the mismatch I found in the code and the specification. (a) In the specification, the bark(x) equation is given as: bark(x) = 13.1 atan(.00074x) + 2.24 atan(.0000000158(x^2)) + .0001x whereas in the code it is given as: #define toBARK(n) (13.1f*atan(.00074f*(n))+2.24f*atan((n)*(n)*1.85e-8f)+1e-4f*(n)) Which one of these is the proper one ? (b) Also, we are planning to implement a fi...
2000 Nov 26
2
References for the BARK/MEL stuff
Could someone point me to the BARK/MEL tables that these macros (from vorbis/scales.h) are trying to approximate? #define toBARK(f) (13.1*atan(.00074*(f))+2.24*atan((f)*(f)*1.85e-8)+1e-4*(f)) #define fromBARK(z) (102.*(z)-2.*pow(z,2.)+.4*pow(z,3)+pow(1.46,z)-1.) #define toMEL(f) (log(1.+(f)*.001)*1442.695) #define fromMEL(m)...
2006 Jan 10
5
IP Address
There''s got to be a simple answer: how do you get the IP address of a visitor in Ruby? Any help would be appreciated! -- Posted via http://www.ruby-forum.com/.
2014 Mar 20
2
BARK implementation (or specification) error
Hi, In the course of some work which I describe below, I have found a very significant difference between the BARK function described in the Vorbis specification and its implementation in libvorbis. In the specificationhttp://xiph.org/vorbis/doc/Vorbis_I_spec.pdf bark(x) = 13.1arctan(.00074x) + 2.24arctan(.0000000185x**2 + .0001x) In the libvorbis code http://svn.xiph.org/trunk/vorbis/lib/scales.h #define toB...
2010 Aug 29
0
match default verb
The default verb for match is :any. This means for: match ''dog/bark(/:num)'' => ''dogs#bark'' # get 3 barks match ''dog/eat'' => ''dogs#eat'' # post breakfast someone could post on dog/bark with :louder or get on dog/eat with :breakfast. This is annoying and messy, and definitely not RESTful. In...
2002 Oct 31
7
Which tree should I be barking up?
Running Samba 2.2.6 on RedHat 7.2 in a Microsoft NT4 Domain, trying to create or copy a text file to a share from a MS Windows 2000 Professional workstation (client2k) gives 'Access denied' Reading the log file (level 3) for samba.client2k (not an activity I feel much comfort in doing correctly) it looks like I am being recognized as a 'guest user' which is a problem but for
2008 Feb 19
4
Patch for Analog Devices compiler & fixed-point AGC
...->gain2+N, st->gain2); - filterbank_compute_psd16(st->bank,st->gain+N, st->gain); + filterbank_compute_psd16(st->bnk,st->gain2+N, st->gain2); + filterbank_compute_psd16(st->bnk,st->gain+N, st->gain); /* Use 1 for linear gain resolution (best) or 0 for Bark gain resolution (faster) */ if (1) { - filterbank_compute_psd16(st->bank,st->gain_floor+N, st->gain_floor); + filterbank_compute_psd16(st->bnk,st->gain_floor+N, st->gain_floor); /* Compute gain according to the Ephraim-Malah algorithm -- linear freque...
2011 Nov 30
4
MS Exchange IMAP Proxy
...balancing, which isn't an issue here, so I'd like to eliminate the need for an unnecessary database server. Does Dovecot do any cleanup of the IMAP commands that would be useful in protecting Exchange (from this, http://www.cvedetails.com/cve/CVE-2007-0221/ for example), or am I barking up the wrong tree? If Dovecot isn't helpful for this, can anybody point me to a better resource? Thanks! Terry
2008 May 07
3
IE barks at getInlineOpacity, makePositioned and a catch
Hi fellow sufferers of IE''s JS hell I''m working on this little JS animation here, works just fine on Foxy, Opera, Safari and friends: http://www.ard.ch/newpage Then comes IE7: Object doesn''t suppot this property or method (line 530) (effects.js): var oldOpacity = element.getInlineOpacity(); Object doesn''t suppot this property or method (line 597)
2006 Feb 28
1
ex-Gaussian survival distribution
...e P(>|Chi|) 1 1 + frailty(unit) 4229.778 63129.46 NA NA NA 2 1 + frailty(unit) 4228.020 58426.27 = 1.757815 4703.190 0 Many thanks for your help with these questions. I have a feeling they are trivial, but I am a psychiatrist so I need to check that I am not barking up the wrong tree (or simply barking...)! Jonathan Williams PS why does "weibull" need quotes in the survreg procedure, while exGauss does not?
2011 May 13
1
using glmer to fit a mixed-effects model with gamma-distributed response variable
Sub: using glmer to fit a mixed-effects model with gamma-distributed response variable Hello, I'm currently trying to fit a mixed effects model , i.e.: > burnedmodel1.2<-glmer(gpost.f.crwn.length~lg.shigo.av+dbh+leaf.area+ bark.thick.bh+ht.any+ht.alive+(1|site/transect/plot), family=gaussian, na.action=na.omit, data=rws30.BL) If I run this code, I get the error below: Error: length(f1) == length(f2) is not TRUE In addition: Warning messages: 1: In plot:(transect:site) : numerical expression has 175 elements: only the...
2014 Sep 30
2
[LLVMdev] Barking Up The Wrong Tree?
I'm trying to port a bunch of code from MacOS X to Windows. The code is a mixture of C, C++11 and Objective-C. (Some of the C++ code has bits of Objective-C mixed in, just for spice ;-) Since it builds on the Mac with clang, I thought that building on Windows with clang would mean that I wouldn't have to make a bunch of changes just related to a different compiler. For example, if I
2014 Sep 30
4
[LLVMdev] Barking Up The Wrong Tree?
Hi Reid, Thanks for the reply. Comments inline below. Regards, Eric On 9/29/14, 5:51 PM, Reid Kleckner wrote: > I think any port will involve some changes, but it's really hard to > say which porting approach will be the least painless beforehand. > Aside from _MSC_VER incompatibilities messing up portability headers, > I think any changes you make to support clang on Windows
2007 Sep 18
3
Cox regression and p-values
Hello, I might be barking up the wrong tree here, but I want to make sure I have a full understanding of this. What I would like to know is what tests are performed to give the p-values for each variable in the table that is the result of coxph regression when the variables are categorical only. More specifically, when...
2015 Apr 02
3
Dovecot Oy merger with Open-Xchange AG
...abiut "true Linux distribution"? >> >> you were cockhead > > no and if someone can't read a simple paragraph beause a missing comma > it's not a compliment for him Your sentence was not really entirely precise. What's the harm in saying sorry instead of barking at people? Cheers, -- j.hofm?ller mur.sat -- a space art project http://sat.mur.at/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 213 bytes Desc: OpenPGP digital signature URL: &l...
2006 Jul 26
2
A Struct inside of a Struct
...... I really need some help on something I am working on... I am trying to create an XML-RPC webservice that sends the following as a response... As you can see it looks like I can use a Struct with a boolean: member but I don''t seem to be able to have another Struct as a member? Am I barking up the wrong tree trying to do it this way? Should I try something else? I would really appreciate any help on this... <?xml version="1.0" encoding="UTF-8"?> <methodResponse> <params> <param> <value> <struct>...
2006 Nov 09
2
Qpopper migration?
...P3, with a small number of heavy IMAP users causing the system grief. There are a large number of POP3 users who leave messages on the server. What I want to ensure doesn't happen is that they are forced to download them again. Do I need to add anything specific in the pop3_uidl_format or am I barking up the wrong tree? Kind Regards, Steve
2008 Mar 31
0
log_buddy released - your helpful dev and debug buddy
...ecial helper that will output the code in the block and its result - note that you *must* use the bracket block form - do...end is not supported. Examples ======= require ''lib/log_buddy'' LogBuddy.init a = "foo" @a = "my var" @@bar = "class var!" def bark "woof!" end module Foo; def self.module_method "hi!!" end end d { a } # logs "a = ''foo''" d { @a } # logs "@a = ''my var''" d { @@bar } # logs "@@bar = ''class...
2017 Jan 04
2
bug in smbclient (?) 4.2.x
...nslate pathname > './Sanit„r&Heizung/' to UTF-8 > ? smbclient: NT_STATUS_UNSUCCESSFUL listing \\* > ? smbclient: tar:704  do_list fail NT_STATUS_UNSUCCESSFUL > ? smbclient: tar:370  tar_process failed > > I will also report that to amanda-users-ml, don't want to bark at the > wrong tree ;-) If you could re-try with Samba 4.5 or bisect back to what change between Samba 4.1 and 4.2 changed the behaviour, it would be most helpful. Also note that Samba 4.2 itself is already out of support. Thanks, Andrew Bartlett -- Andrew Bartlett ht...