search for: l32

Displaying 12 results from an estimated 12 matches for "l32".

Did you mean: 32
2012 May 18
1
Help for numericDeriv function
...ement of another matrix. l <- matrix(nrow=nrow(load),ncol=ncol(load)) for(i in 1:nrow(load)) { for(j in 1:ncol(load)) { l[i,j]=paste("l",i,j,sep="")}} > l [,1] [,2] [1,] "l11" "l12" [2,] "l21" "l22" [3,] "l31" "l32" > l11 [1] 3 > l12 [1] 0 > l21 [1] 1 > l22 [1] 4 > l31 [1] 1 > l32 [1] 3 Let's say, I need to take the derivative of (l11*l21+l12*l22) with respect to l11,l12,l21,l22,l31,l32. > numericDeriv(quote(l11*l21+l12*l22), c(t(l),recursive=TRUE)) [1] 3 attr(,"gradient...
2006 Aug 16
1
Specifying Path Model in SEM for CFA
...I get this working I need to add some further constraints.) Here is what I've tried: model.sa <- specify.model() F1 -> X1,l11, NA F1 -> X2,l21, NA F1 -> X3,l31, NA F1 -> X4,l41, NA F1 -> X5, NA, 0.20 F2 -> X1,l12, NA F2 -> X2,l22, NA F2 -> X3,l32, NA F2 -> X4,l42, NA F2 -> X6, NA, 0.25 F1 <-> F2,g12, 1 F1 <-> F1,g11, 1 F2 <-> F2,g22, 1 X1 <-> X1, NA, 1 X2 <-> X2, NA, 1 X3 <-> X3, NA, 1 X4 <-> X4, NA, 1 X5 <-> X5, NA, 1 X6 <-> X6, NA, 1 This at least c...
2010 Feb 22
8
[OT] Asterisk 1.6 and DECT Phones
Hi, looking for your valued input on suitable suggestions for high quality VoIP DECT phones. I am having real issues with my Snom M3s and Asterisk 1.6 and looking to a new manufacturer. -- Thanks, Phil
2019 Nov 09
1
MariaDB database for users and passwords?
...led "sql." > > Ken SQL is the **authentication** database, which has mysql **driver**. So in dovecot.conf you use sql, and in the config file for the sql authentication, you specify the driver. See https://github.com/dovecot/core/blob/master/doc/example-config/dovecot-sql.conf.ext#L32 Aki
2013 Feb 04
1
NSD 3.2.15 released (+RRL)
...off for specific query patterns when verbosity set to level 2 or higher. Best regards, Matthijs link: http://www.nlnetlabs.nl/downloads/nsd/nsd-3.2.15.tar.gz sha1: e31a81ab7877422b34e1f163f9509cd93f395664 NSD RELEASE NOTES 3.2.15 ================ FEATURES: - Support for ILNP RR types: NID, L32, L64, LP (RFC6742). - RRL, --enable-ratelimit at configure time and config options. - TSIG initialization only fails when there is no digest found at all. BUG FIXES: - Bugfix #478: Declaration after statement (for gcc 2.95). - Bugfix #483: Better error message in case of TSIG error. - Bugfix #48...
2019 Jun 01
0
Re: [libnbd] Simultaneous read and write
...e a new struct socket subtype: https://github.com/libguestfs/libnbd/blob/e63a11736930c381a79a8cc2d03844cfff5db3ef/lib/internal.h#L190 which will work like the current raw struct socket for send(): https://github.com/libguestfs/libnbd/blob/e63a11736930c381a79a8cc2d03844cfff5db3ef/lib/socket.c#L32 but for recv the data will come from a buffer populated by the caller using their own thread. The caller will be required to set up a second thread which does basically: pthread_create (start_second_thread); start_second_thread () { int fd = nbd_aio_get_fd (nbd); char buf[BUFSIZ];...
2009 Sep 24
2
Does anybody know how to connect to KDB from within R?
Please give me some pointers... Thanks a lot!
2020 Apr 22
5
[Bug 3152] New: #ifdef around memmem() is invalid.
...20d148d75cb9c50876/openbsd-compat/openbsd-compat.h#L76 #if defined(HAVE_DECL_MEMMEM) && HAVE_DECL_MEMMEM == 0 void *memmem(const void *, size_t, const void *, size_t); #endif https://github.com/openssh/openssh-portable/blob/d6cc76176216fe3fac16cd20d148d75cb9c50876/openbsd-compat/memmem.c#L32 still uses #ifndef HAVE_MEMMEM. -- You are receiving this mail because: You are watching the assignee of the bug.
2019 Nov 08
3
MariaDB database for users and passwords?
Am 08.11.2019 um 21:23 schrieb Ken Wright via dovecot: > > On 11/8/19 3:14 PM, @lbutlr via dovecot wrote: >> On 08 Nov 2019, at 11:56, Ken Wright <wizard at bnnorth.net> wrote: >>> Nov 8 13:28:53 grace dovecot: auth: Fatal: Unknown passdb driver ? >> You do not have Dovecot compiled with support for mysql' >> > But the dovecot-mysql package is
2009 Mar 10
9
WoW Performance - Degrades over Time
Hi All, I've posted for some suggestions in the WoW forums, but it's been suggested that I post here as well, as I'm more likely to get someone who has a clue :) PROBLEM ====== After an extended play time in one area (~ 1 hour), or rapid travel between areas, the performance degrades substantially. It goes from 60+ FPS to about 5FPS and doesn't recover until I restart the game.
2007 Sep 02
17
A Proposal To Magically Remove ''params''
I have a magical proposal for the anti-magic web framework. Controller methods do not use arguments and yet expect arguments. This is handled through this params hash because we don''t know in advance what parameters a client could pass to Merb. But in almost every instance, it is too much to know all the query parameters - one doesn''t care if the user threw in an extraneous
2019 May 31
4
[libnbd] Simultaneous read and write
This is a continuation of a discussion we were having on IRC. The problems with IRC are it's not recorded and it's hard to have deep technical conversations. I hope this is a decent summary. Problem simply stated: Certain NBD servers (qemu-nbd in particular) are able to simultaneously read and write on a socket. ie. They can be simultaneously reading a request and writing the reply to