similar to: advice on module organization

Displaying 20 results from an estimated 400 matches similar to: "advice on module organization"

2005 Oct 21
1
finite mixture model (2-component gaussian): plotting component gaussian components?
Dear Knowledgeable R Community Members, Please excuse my ignorance, I apologize in advance if this is an easy question, but I am a bit stumped and could use a little guidance. I have a finite mixture modeling problem -- for example, a 2-component gaussian mixture -- where the components have a large overlap, and I am trying to use the "mclust" package to solve this problem. I need
2002 Jan 18
2
Replacing data.frame values
Hello, I have two data frames, NameAndConc.df and WhichOnes.df. NameAndConc.df has two columns, the first column is the names of some material, and the second column is the concentration of active ingredient. > NameAndConc.df name conc 1 material1 0.8 2 material2 0.5 3 material3 0.4 WhichOnes.df has two columns, each of which specifies which material. > WhichOnes.df
2008 May 23
2
sed
Not specific to CentOS but I know you guys would be really helpful anyhow. Basically, I have a file which has been editted in the past very similarly to the hosts file only now I want to use it as a hosts file and need to run some fancy sed to massage the data into shape. Currently, the data in the file is in the form of <ip address> <tab> <short hostname> <space>
2015 Jun 12
2
Voice mail and caller ID
I have this in my sip.conf: exten => *98,1,Verbose(0,CALLERID number is "${CALLERID(num)}") same => n,VoicemailMain(${CALLERID(num)}@LocalSets,s) same => n,Hangup However, my extensions are set up so that they always show the external number, not the extension: [foobar2](client-phone) secret=xxxxxxxxxxxxxxxxxxxxxxxxxxxxx callerid=Candace <5555551212>
2010 Aug 01
1
[LLVMdev] Creating and building LLVM projects with Eclipse CDT on Windows?
I just downloaded LLVM a couple days ago -- I got everything built and installed quite easily using CMake to generate build files for Eclipse CDT + MinGW. That much worked like a charm -- but I've spent most of the intervening time trying to get a simple project set up. :-P My goal is to create a project consisting of two main parts: - A backend for WDC 65816 - A frontend including a
2016 Jan 19
5
Building SVN head with CMake - shared libraries?
On 01/17/2016 02:53 PM, Dan Liew wrote: > @Brad: CC'ing you because I know you use > ``llvm_map_components_to_libnames()`` so you will likely have > something to say about it breaking. I'm using it in CastXML but that could easily be adapted to something different if needed. The larger concern is that that API is the documented way to use LLVM in an application with CMake so
2012 Mar 19
1
fitting a histogram to a Gaussian curve
Hello, I am trying to fit my histogram to a smooth Gaussian curve(the data closely resembles one except a few bars). This is my code : #!/usr/bin/Rscript out_file = "irc_20M_opencl_test.png" png(out_file) scan("my.csv") -> myvals hist(myvals, breaks = 50, main = "My Distribution",xlab = "My Values") pdens <- density(myvals, na.rm=T) plot(pdens,
2006 Mar 27
5
Accessing Session Object from a model
i realise that this goes against the basic idea of the MVC architecture, but i''ve found myself in a situation where i need to get information about the current user in a model & i''m not sure how to do it. Basically, we have a product where each customer has their own profile with data stored in a separate database. There are some tables in a common
2015 Jun 12
0
Voice mail and caller ID
Try this for CHAN_SIP: same => n,Set(Peer=${SIPCHANINFO(peername)}) ; Get the peer same => n,Set(MailBox=${SIPPEER(${Peer},mailbox)}); Get the mailbox same => n,VoicemailMain(${MailBox}@LocalSets,s) ; If we have a mailbox defined log into it If you are using PJSIP it's more complex same => n,Set(EndPoint=${CHANNEL(endpoint)}) ; Get the peer same =>
2013 Jun 10
1
SSHD relative pathing problem
Hi :) I hope this isn't just a problem in my understanding, but anyway. I am using `OpenSSH_6.2, OpenSSL 1.0.1e 11 Feb 2013` on an Arch Linux system, and I got caught out on this error for several days, and I'm not sure if its a bug for you guys or what. Anyway, what I noticed, was that when I specifyied a custom HostKey in the host file or by relative path, that is: `sshd -Dd -f
2015 Apr 10
3
Disabling of userdb/passdb modules using config statements
Hola, Debian (and possibly other distros) use the /etc/dovecot/conf.d/* setup where default config files are stuffed and then one can just add a 99-myconfig.conf et voila, variables are overruled. This allows the distro to supply updates to the files at package upgrade time without any/much user intervention. The problem (for me ;) is that the system comes provided with: auth-system.conf.ext
2004 Jun 03
3
Sloppy argument checking for named arguments
Christian -- This is not a bug, but a feature, and the dot is not the issue here. R uses partial argument matching on function arguments. So: > f <- function(foobar = 0){print(foobar)} > f function(foobar = 0){print(foobar)} > > f(fo=1) [1] 1 > f(foo=1) [1] 1 > f(foob=1) [1] 1 > f(fooba=1) [1] 1 > f(foon=1) Error in f(foon = 1) : unused argument(s) (foon ...)
2006 Jan 23
1
How to set-up LCR
How to set-up LCR ? a. which companies can be used with LCR? b. how to set-up & maintain LCR? c. multiple connection to one gateway? Example: +886223456789 could be reachable via a. ENUM free b. Dundi free c. Voipstunt free d. Voipbuster free e. Nufone $ f. Voipstunt $ g. others with 4 concurrent connections $$ h. others with 3 concurrent connections $$ I am looking
2003 Dec 17
2
emergency- machines kicked off network after PDC 2.2.8->3.0.0 upgrade
After upgrading our PDC to 3.0.0 last night(and confirming logins worked properly)...this morning, we had two machines report errors says the machine account does not exist or has been changed. Last night, users- even ones who had not been on that particular workstation before- were able to login on at least 6 out of 30-40 workstations. All configuration files were moved over, including the
2009 Aug 03
1
Perl Module Question
To safely make Perl modules from CPAN in Solaris, I used this procedure: mkdir /opt/cpan chmod 777 /opt/cpan chown joe:101 /opt/cpan PERL5LIB=$PERL5LIB:/opt/cpan export PERL5LIB /usr/perl5/bin/perlgcc -MCPAN -e shell Also, ~/.cpan/CPAN/MyConfig.pm specifically had 'makepl_arg' => q[LIB=/opt/cpan PREFIX=/opt/cpan INSTALLMAN3DIR=/opt/cpan/man/man3], Does this make sense in CentOS as
2016 Aug 30
2
Samba4 Centos 7 - CPU 100%
On Tue, 30 Aug 2016 11:15:30 -0300 Maiquel Consalter <maiquelconsalter at gmail.com> wrote: > >From reading his old smb.conf it appears it was, but I noticed > >something: > >Maiquel, can you run this command on a DC and report back with the > >result. > >ldbsearch -H /usr/local/samba/private/sam.ldb -b >
2014 May 27
3
Re: [PATCH 2/2] Use setfiles from the appliance for the SELinux relabel (RHBZ#1089100).
On Tuesday 27 May 2014 09:08:27 Richard W.M. Jones wrote: > On Mon, May 26, 2014 at 11:21:59AM +0200, Pino Toscano wrote: > > Rewrite the relabel API to read the policy configured in the guest, > > invoking setfiles (added as part of the appliance, as part of > > policycoreutils) to relabel the specified root. In case of failure > > at > > any point of the process,
2012 Sep 30
0
Speex (in ios) really poor quality (and robotic) sound
Hi everyone, I'm trying to encode/decode with speex, when I do not, the audio is loud and clear, but when I encode/decode to test audio quality, I get a really poor audio quality and a robotic sound. Here's my init audio method : #define AUDIO_QUALITY 10 - (void) initAudio { try { //SPEEX CONFIG speex_bits_init(&bits_in);
2010 Mar 13
0
Skype for Asterisk and regular expressions
Is there something strange about using regular expressions in the context to which incoming Skype calls go? If I set up accounts, foobar1, foobar2, etc, it doesn't seem to work to have: exten => _foobarX,1,... should it?
2010 Nov 05
3
Unable to create (and keep) guest
Hi, Host: CentOS 5.5 Guest: Ubuntu maverick I am having a horrid time trying to create a guest on my xen machine. I have tried several method. The method that I have had the most success with is `xm create`. The problem I have is that once the I have run: xm create -c myconfig.cfg install=true install-mirror=http://mirror.bytemark.co.uk/ubuntu/ install-suite=maverick and go all the way