search for: yout

Displaying 20 results from an estimated 77 matches for "yout".

Did you mean: you
2009 Aug 15
5
Incompatibility using pxelinux 3.80 or later and setupldr.exe from windows XP 32 bits
...mputer the windows textmode setup will fail because he cannot find winnt.sif. I'm using the french windows source: the error message is "Le fichier INF winnt.sif est endommag? ou manquant, statut 21" The PXE server is working. Reproducing the bug ========================= Create in yout tftp root a folder named pxelinux.cfg Create pxelinux.cfg/default with thid content DEFAULT menu.c32 TIMEOUT 0 PROMPT 0 MENU TITLE Multiboot LABEL Windows XP Home KERNEL startrom.0 MENU END rename pxelinux.0 in yout tftp root into startrom.0 (t...
2011 May 04
1
bivariate linear interpolation
Hi, I have three matrices (X,Y,P) with the same dimension. The X,Y grid is regular and I want to perform linear interpolation to pick out certain points. In matlab appropriate call is something like Pout=interp2(X,Y,P,Xout,Yout, method="linear") where Xout and Yout are the locations where I want the Pout data (typically a different grid). (Scipy has this routine in interpolate.interp2d, with similar arguments) In R there is (as often) the choice between many different interpolation routines. Akima has one for...
2012 Jan 19
0
Global sensitivity indices using sensitivity package: sobol, sobol2002
...ws1[, 3]+xnews1[, 5])*I dR <- xnews1[, 5]*I -(xnews1[, 3] + xnews1[,7])*R dN<-(xnews1[, 2]-xnews1[, 4]*N)*N-xnews1[, 8]*I-(xnews1[, 2]-xnews1[, 4]*N)*(1-xnews1[, 6])*I der <- c(dS, dI,dR,dN) list(der) # the output must be returned }) # end of 'with' } # end of function definition yout<-matrix(0,100,100) parms1<-xnews1 dt<- seq(1,50,1) inits1 <- c(S=xnews1[, 10], I=xnews1[, 11], R=xnews1[, 12],N=xnews1[, 13]) for(j in 1:100){ simulation2 <- as.data.frame(lsoda(inits=inits1, times=dt, funct=SIRdob1, parms=parms1[j, ])) attach(simulation2) yout[j]<-as.numeric(sim...
2005 Aug 05
5
How to set the floating point precision beyond e-22?
...20665e-13 -4.166945e-12 -6.145350e-12 [71] -2.776804e-11 -5.269669e-11 -7.154246e-10 -1.490515e-09 -1.294256e-08 [76] -1.224821e-02 -3.278657e+00 -4.620100e+01 -9.781843e+02 -1.303929e+04 [81] -5.545949e+04 -8.077540e+04 -8.577861e+04 -1.329961e+05 -1.450908e+05 [86] -3.022353e+05 -4.015776e+05 As yout can see, the eigenvalues spread very much (between e+20 and e-13). We presume, that it has something to do with R's floating point precision, which I read is about 22-digits in mantissa as default. Can this precision be set to values above 22? The problem occurs especially when trying to perfor...
2004 Aug 06
0
Re: Speex 1.1 is out
..._cancel() on each incoming > frame to be played back. But, what do I pass for the parameters? > I'm guessing that ref is the current outgoing frame, echo is the > current incoming frame (which contains echo to be removed), out > is the echo-cancelled frame to be played back, and Yout is the > same signal as out but in the frequency domain. Is this right? Actually, ref is the incoming frame (with echo), echo is the outgoing frame (that has only the echo) and out is the echo-cancelled frame. As for Yout, it is an estimation of the residual echo that can be sent to the denoi...
2006 Oct 27
2
Echo Canceller trouble in 1.2beta1
...ment says that the order of arguments to Speex_echo_cancel is (echo_state, input_frame, echo_frame, output_frame, residue) where "input_frame" is as captured from mic and "echo_frame... was played from the speaker." Speex_echo_cancel calls these parameters (st, ref, echo, out, Yout). The name "ref" is confusing to me, but the implementation of speex_echo_playback() and speex_echo_capture() confirms that the "ref" argument is supposed to be the mixture of sound coming from the microphone and the "echo" argument is supposed to be whatever has been...
2009 May 12
2
STI good or bad for my problem?
Hi. I am currently developing a small course system for student and teachers. The system is divided in sections and sections have many messages, comments, documents and schedules. Pretty easy to set up using ROR, just add some belongs_to and has_many relations. But everything becomes much more complicated when the section items (message, comment and so on...) all has comments. And they can also be
2016 Aug 04
3
Centos 7 newer kernel needed
...?N? then go to checkpoint #2) > > 2) Checkpoint #2: Assume your CentOS box support > > *a. **echo 'options kvm-intel nested=y' >> /etc/modprobe.d/*dist.conf > > b. modprobe kvm-intel > > 3) Checkpoint #3: Verification > > a. Reboot yout CentOS box > > b. cat /sys/module/kvm_intel/parameters/nested (if ?Y? then you can carry one process the KVM installation. > > > > PS: Source: https://lalatendu.org/2015/11/01/kvm-nested-virtualization-in-fedora-23/ which should be very similar with CentOS and CentOS 7 already...
2017 Mar 14
3
Having problem getting Asterisk to work on CentOS 7
On Tue, Mar 14, 2017 at 06:03:33PM +0100, Jean Aunis wrote: > Hello, > > Did you disable selinux ? It usually causes troubles when starting asterisk > as a service. You can do this with : setenforce 0 (this will not totally > disable selinux, but switch it to a permissive mode). Generally before advising that, check if this is the error: tail -f /var/log/audit/audit.log and
2016 Aug 03
2
Centos 7 newer kernel needed
Hello, I am looking for a Linux kernel for Centos 7 that implements a feature introduced in kernel version 3.12: "nested EPT support to KVM's nested VMX." If anyone has used this feature with Centos 7, please let me know. Laurentiu -------------- next part -------------- An HTML attachment was scrubbed... URL:
2012 Jul 25
1
[LLVMdev] [RFC] YAML I/O
...m: // build a person Person a; a.name = "Tom"; a.age = 27; a.speaks_french = false; // build sequence of persons PersonList persons. persons.push_back(a); To write a yaml documents your code looks like: void dump(PersonList &persons, raw_ostream &out) { Output yout(out); yout << persons; } To read a yaml document your code looks like: void readYaml(StringRef filePath) { Input yin(filePath); DocumentList<PersonList> docList; yin >> docList; // if there was an error parsing, message already printed out if ( yin.error() )...
2017 Dec 28
1
Chromebook AD integration fails on joining the domain
...ention that I changed the user's password when I enabled AES on their Account tab, in ADUC. Thanks, Mike On Wed, Dec 27, 2017 at 9:52 AM, Achim Gottinger via samba < samba at lists.samba.org> wrote: > Hello Mike, > > Can be you need to recreate the machine and tgt password on yout server so > it adds the aes enc types for these after raising the functional domai > level. > > The required scripts can be found in tthe samba sources in > /source4/scripting/devel/ > > Use chdcpass for the machine-account and chgkrbtgtpass for the tgt account. > > I did...
2017 Dec 27
2
Chromebook AD integration fails on joining the domain
Hi, I am testing Google's recent ability to integrate Chromebooks into AD and it's failing when I try to join the device to the domain. When I run wireshark during the test I notice 2 TGS-REQs from the device that are answered with KRB5KDC_ERR_ETYPE_NOSUPP. The Chromebook is only passing AES256-cts-hmac-sha1-96 and AES128-cts-hmac-sha1-96 as enc types. I was getting the same result from
2002 Nov 06
4
"hiding" and "vetoing" files (for Samba 2.2.2 & Windows Explorer)
We're running Samba 2.2.2 on an RS/6000 (AIX 4.3.3) using Windows 95 clients. We've tried the "hide files" and "veto files" option in smb.conf, but when the shares are mapped, we can still see the contents in Windows Explorer. We used the wildcard for all the contents of the shares (ex. hide files = /*.*/). The Samba manual only makes reference to Windows 98, so
2004 Aug 06
2
More Speex (pre-processing) Options
...39;ll need to experiment, but a value around 500 (for 8 kHz) might be a good start." > [question about params for echo canceller function] "Actually, ref is the incoming frame (with echo), echo is the outgoing frame (that has only the echo) and out is the echo-cancelled frame. As for Yout, it is an estimation of the residual echo that can be sent to the denoiser so that residual echo can be removed as well. Note that this last feature is still experimental." <p>Tom Harper (harper@archila.com) wrote: > > Hi, > > So I have had a chance to delve deeper into t...
2018 Jul 20
4
autogenerated self-signed certificate problem
Hi people, i have a problem with trying ldaps i use autogenerated self-signed certificate, i write in smb this: tls enabled = yes tls keyfile = tls/key.pem tls certfile = tls/cert.pem without cafile when i try to verify with: openssl verify /usr/local/samba/private/tls/myCert.pem it said me unable to verify the first certificate and if add -CApath works! and finally when i try from another
2004 Mar 25
1
wordfast, word 2000, + wine
Hi, I have succesfully installed word 2000 under wine on a suse 9.0 box. Now I want to install wordfast (http://www.wordfast.net) on top of it. Wordfast is a visual basic piece of software for word (basically ou install it by putting a .dot file into yout Office/Startup) which is essential for professional translators. This configuration is known to work using Cross-over. Now what happens in my case is that the wordfast button appears on the toolbar, but when I click on it wine starts complaining furiously and goes into debugger a bit latter....
2019 Sep 23
3
testparm comaprison
Hi, Thanks, Well winbind enum is needed, and ntlm auth is required by some applications, seems that samba has disabled by default but windows has enabled, we have to migrate some old applications I understand taht is OK with yout comments thanks Missatge de Trenta sis <trenta.sis at gmail.com> del dia dl., 23 de set. 2019 a les 11:22: > > Hi, > > I have used testparm. > > smb.conf from dc1 4.4.5 > # Global parameters > [global] > > bind interfaces only = Yes > interfa...
2007 Apr 28
4
Installing RoR on PenDrive
...day going up & down, and in order to have a constant learning, i want to install ruby on rails, mysql, mysql-front, and RadRails on a 512mb PenDrive. I''ve followed these steps: 1) Download latest RubyOnRails windows installer. 2) Execute it settign the path to the desired folder into yout pend drive (i.e: G:\DATA\RUBYONRAILS\) 3) Go to sleep. 4) When installed, type this on command: cd <PEN_DRIVE_UNIT> gem install rails --remote -i G:\DATA\RUBYONRAILS 5) Be able to say YES to all question while sleeping. 6) Download a non-installable IDE for RoR, copy the folder to the <P...
2004 Aug 06
1
More Speex (pre-processing) Options
...a value around >500 (for 8 kHz) might be a good start." > > > [question about params for echo canceller function] > >"Actually, ref is the incoming frame (with echo), echo is the outgoing >frame (that has only the echo) and out is the echo-cancelled frame. As >for Yout, it is an estimation of the residual echo that can be sent to >the denoiser so that residual echo can be removed as well. Note that >this last feature is still experimental." > > >Tom Harper (harper@archila.com) wrote: > > > > Hi, > > > > So I have had a...