Displaying 20 results from an estimated 600 matches similar to: ": strptime bug"
2006 Sep 09
2
duplication matrix
Dear R-list members,
Just wondering if there is any way to compute the duplication matrix in R.
I tried to search for it but only found functions "xpnd" and "vech".
Basically for a symmetric n by n matrix A, the duplication matrix D_n is
a matrix of dimension n^2 by n(n+1)/2 such that
D_n vech(A)= c(A), where c(A) just vectorizes A.
The duplication matrix is defined on page
2011 Jul 23
1
Achieving 'reverse-Vech' of a matrix
Let say i have a square matrix and applied the 'vech' operator to stack the lower triangular elements into a vector:
> Mat <- matrix(1:25, 5)
> Mat
? ? ?[,1] [,2] [,3] [,4] [,5]
[1,] ? ?1 ? ?6 ? 11 ? 16 ? 21
[2,] ? ?2 ? ?7 ? 12 ? 17 ? 22
[3,] ? ?3 ? ?8 ? 13 ? 18 ? 23
[4,] ? ?4 ? ?9 ? 14 ? 19 ? 24
[5,] ? ?5 ? 10 ? 15 ? 20 ? 25
> Mat[lower.tri(Mat)]
?[1] ?2 ?3 ?4 ?5 ?8 ?9 10 14
2008 Oct 24
0
following up on infinite email server loop
just to add to ted's explanation in case it helps to fix the email
server problem: below are the two Recipients and one of the two is
always contained in the repeated emails that I'm receiving. Also, of
course i don't mean to claim that the names contained in below are
doing anything to cause the problem . VEC Operator is just an example.
There are 3 or 4 others that repeat
2005 Oct 19
1
clustering algorithm detail
Hi all,
I wanted to run the hclust (or any other clustering algorithm) on a distance matrix. I have formed the distance matrix as:
distmat:
a b c d e
a 0.00 0.96 1.60 1.60 1.68
b 0.96 0.00 0.96 1.80 2.64
c 1.60 0.96 0.00 0.84 1.80
d 1.60 1.80 0.84 0.00 0.96
e 1.68 2.64 1.80 0.96 0.00
2019 Nov 11
0
[centos/centos.org] branch master updated: Update meeting schedule as per https://github.com/CentOS/Calendar/pull/29
This is an automated email from the git hooks/post-receive script.
unknown user pushed a commit to branch master
in repository centos/centos.org.
The following commit(s) were added to refs/heads/master by this push:
new 63acd8a Update meeting schedule as per https://github.com/CentOS/Calendar/pull/29
63acd8a is described below
commit 63acd8a84cfba79a1fd665b12d250f27e8f86a8e
Author: rbowen
2013 Nov 26
2
Unable to install Puppet Modules
Hi Puppet Users -
Currently attempting to install puppet modules on a Security Onion virtual
machine. Security Onion is based on Ubuntu 12.04.
Puppet was installed using the puppetlabs-release-precise.deb file found on
apt.puppetlabs.com.
Attempting to install a module results in the following error -
user@user-virtual-machine:~$ sudo puppet module install puppet/stdlib
--debug --verbose
2009 Jun 19
3
Planning of next challenges for Firefox
Fellow open video enthusiasts,
Chris Blizzard just suggested that with all the Xiph developers
attending the OpenVideoConference, we should all get together and
discuss the next things to attack for Ogg Theora/Vorbis in Firefox. I
think that's a great idea.
Assuming that everyone stays for the hackfest on Sunday, we picked
10am on Sunday for a thorough discussion and planning session (1-2
2008 Oct 23
15
VEC Operator in R
Can anyone please tell whether there is any R function to act as "VEC" and
"VECH" operator on Matrix? Yes of course, I can write a
user-defined-function for that or else, I can put dim(mat) <- NULL. However
I am looking for some R function.
Your help will be highly appreciated.
Regards,
--
View this message in context:
2014 Feb 10
0
building 4.1.4 on AIX 5.2 : fails on libtalloc.so linking
Hi,
I'm trying to build samba 4.1.4 on an AIX 5.2.0.0.
I'm using GCC v3.3.2 and python 2.7.6
I've configured the build with this command (disabling ACL because of
missing headers on my system concerning nfs4 acl):
$) LDFLAGS=-lpthread ./configure -C --prefix=/i/infext/samba-4.1.4
--without-acl-support
And then I have run the build procedure but it fails on linking libtalloc.so
2017 Mar 09
1
as.POSIXct behaviour
Dear R-devel, I have tested the code below on R v3.3.2 and v3.3.3 on
Mac and Windows.
x <- c("2017-01-01 05:00:02", "2017-01-02 03 :M:00") # note the ? :M?
in 2nd value
as.POSIXct(x)
# [1] "2017-01-01 GMT" "2017-01-02 GMT?
The time info is lost on the first index as well. And it happens *silently*.
On the other hand, if I do:
lapply(x, as.POSIXct)
#?[[1]]
2017 Nov 30
2
binary form of is() contradicts its unary form
2017-11-30 13:26 GMT+01:00 Suzen, Mehmet <mehmet.suzen at gmail.com>:
> On 30 November 2017 at 11:37, I?aki ?car <i.ucar86 at gmail.com> wrote:
>> 2017-11-30 3:14 GMT+01:00 Suzen, Mehmet <mehmet.suzen at gmail.com>:
>>> My understanding is that there is no inconsistency. `is` does what it
>>> claims, from the documentation:
>>>
>>>
2010 Apr 05
0
ldmap module rid messages using winbind
I am running an Ubuntu 9.04 machine with kernel 2.6.28-16-server,
Samba v3.3.2 that uses winbind for authentication of users.
My log files are littered with messages like these every time a user
remotely mounts their home directory:
Apr 5 07:12:40 csfile smbd[15517]: pam_unix(samba:session): session
opened for user STLAWU\akwood06 by (uid=0)
Apr 5 07:12:40 csfile winbindd[3549]: [2010/04/05
2012 Oct 05
0
Planned service outage for community services on October 7, 2012
On Sunday, October 7th, 2012 the Asterisk community services listed
below will be undergoing maintenance (software upgrades and updates).
The services will be shut down at approximately 9:00 PM CDT (October
8, 2012 at 02:00 UTC)[1] and should be available within an hour.
The affected services are:
* issues.asterisk.org/jira
* wiki.asterisk.org/wiki
* code.asterisk.org/code
Thank you for
2013 Apr 22
0
Planned maintenance for community services on April 22, 2013
On Monday, April 22, 2013, the Asterisk community services listed
below will be unavailable due to maintenance (software patches
and upgrades). The services will be unavailable at approximately
9:00 PM CST (02:00 April 23 UTC)[1], and should be unavailable
for no more than two hours.
The affected services are:
?* issues.asterisk.org
?* wiki.asterisk.org
?* code.asterisk.org
* crowd.asterisk.org
2013 Apr 22
0
Planned maintenance for community services on April 22, 2013
On Monday, April 22, 2013, the Asterisk community services listed
below will be unavailable due to maintenance (software patches
and upgrades). The services will be unavailable at approximately
9:00 PM CST (02:00 April 23 UTC)[1], and should be unavailable
for no more than two hours.
The affected services are:
?* issues.asterisk.org
?* wiki.asterisk.org
?* code.asterisk.org
* crowd.asterisk.org
2013 Jan 24
0
Planned maintenance for community services on January 24, 2013
On Thursday, January 24th, 2013, the Asterisk community services
listed below may be unavailable due to maintenance (hardware
updates). The services may be unavailable at approximately 4:00 PM CST
(22:00 January 24th UTC)[1], and should be unavailable for no more
than one hour.
The affected services are:
* svn.asterisk.org
* reviewboard.asterisk.org
* origsvn.digium.com
Thank you for your
2013 Mar 04
0
Planned maintenance for community services on March 4, 2013
On Monday, March 4, 2013, the Asterisk community services listed below
will be unavailable due to maintenance (software patches and
updates). The services will be unavailable at approximately 9:00 PM CST
(03:00 March 5 UTC)[1], and should be unavailable for no more than one
hour.
The affected services are:
* issues.asterisk.org
Thank you for your support and patience!
-- Digium's
2013 Mar 04
0
Planned maintenance for community services on March 4, 2013
On Monday, March 4, 2013, the Asterisk community services listed below
will be unavailable due to maintenance (software patches and
updates). The services will be unavailable at approximately 9:00 PM CST
(03:00 March 5 UTC)[1], and should be unavailable for no more than one
hour.
The affected services are:
* issues.asterisk.org
Thank you for your support and patience!
-- Digium's
2013 Mar 22
0
Planned maintenance for community services on March 25, 2013
On Monday, March 25, 2013, the Asterisk community services listed below
will be unavailable due to maintenance (software patches and
updates). The services will be unavailable at approximately 9:00 PM CST
(02:00 March 26 UTC)[1], and should be unavailable for no more than one
hour.
The affected services are:
* reviewboard.asterisk.org
Thank you for your support and patience!
-- Digium's
2013 Mar 22
0
Planned maintenance for community services on March 25, 2013
On Monday, March 25, 2013, the Asterisk community services listed below
will be unavailable due to maintenance (software patches and
updates). The services will be unavailable at approximately 9:00 PM CST
(02:00 March 26 UTC)[1], and should be unavailable for no more than one
hour.
The affected services are:
* reviewboard.asterisk.org
Thank you for your support and patience!
-- Digium's