search for: corespondents

Displaying 20 results from an estimated 65 matches for "corespondents".

Did you mean: correspondents
2003 Mar 16
0
Subject: [tcng] X:Y to tcng corespondence !
> Message: 8 > Date: Fri, 14 Mar 2003 21:49:49 +0200 > From: raptor <raptor@tvskat.net> > To: lartc@mailman.ds9a.nl > Subject: [LARTC] [tcng] X:Y to tcng corespondence ! > > Is there a easy way that I to get class-id<----->tcng-class-path conversation.... and vs. versa.. > > --__--__-- There are couple files can be created by tcc: # cat a.tc dev
2006 Mar 15
7
matrix indexing
Can someone please give me a pointer here. I have two matrices matA A B C 1 5 2 4 2 2 4 3 3 1 2 4 matB A B C 1 TRUE FALSE TRUE 2 FALSE TRUE TRUE 3 FALSE FALSE FALSE how do I extract all the values from matA where the coresponding entry in matB == TRUE (or FALSE), perferably in vector form. Many thanks tom
2019 Oct 05
3
Differences between CentOS 7.x and CentOS 8.x OS
On 10/4/19 6:59 PM, Fred Smith wrote: > On Fri, Oct 04, 2019 at 04:52:28PM -0600, David G. Miller wrote: >> On 10/3/19 1:37 PM, Ljubomir Ljubojevic wrote: >>> On 10/3/19 5:49 PM, Kaushal Shriyan wrote: >>>> Hi, >>>> >>>> I will appreciate it if someone can help me understand the differences >>>> between CentOS 7.x and CentOS 8.x OS.
2019 Oct 03
4
Differences between CentOS 7.x and CentOS 8.x OS
Hi, I will appreciate it if someone can help me understand the differences between CentOS 7.x and CentOS 8.x OS. I look forward to hearing from you and thanks in advance. Best Regards, Kaushal
2019 Oct 04
2
Differences between CentOS 7.x and CentOS 8.x OS
On 10/3/19 1:37 PM, Ljubomir Ljubojevic wrote: > On 10/3/19 5:49 PM, Kaushal Shriyan wrote: >> Hi, >> >> I will appreciate it if someone can help me understand the differences >> between CentOS 7.x and CentOS 8.x OS. I look forward to hearing from you >> and thanks in advance. >> > In short, CentOS 7.x is based on Fedora 19 while CentOS 8 is based on >
2003 Oct 22
2
High frequency time-series
Having to collect hourly electricity loads and quarter-of-an-hour electricity production data for some years I think that the tidiest way of doing it is to resort to ts but I don't know how to define such a frequency starting from a set date. Leafing through r-help mail archives I've found this *ALMOST* satisfactory message: ==========================================================
2007 Sep 10
1
downloading an src.rpm?
Hello, I've got the rpmforge repo configured as a 3rd party repo. There's an rpm that i'd like to get the coresponding src.rpm, install it, and recompile it. How would i do this with yum? Thanks. Dave.
2005 Sep 12
1
Can't see windows shares by name
Hello all, I am having a small problem with a bsd box of mine. Using the file manager in kde, I can type \\ip_address and get prompted for a username and password for the coresponding server on my domain. However, When I type, \\servername, I again get prompted for a username and password, but it gets rejected. I think it is having problems looking up the name ... which is kind of strange
2010 Jan 24
2
fetching columns from another file
Hi! All, I am trying to fetch rows from a data frame which matches to first 2 columns of another data frame. Here is the example what I am trying to do: > ptable=read.table(file="All.txt",header=T,sep="\t") > ptable=as.matrix(ptable) > dim(ptable) [1] 9275 6 > head(ptable) Gene1 Gene2 PCC PCC3 PCC23 PCC123 [1,]
2002 Apr 26
3
different data series on one graph
Hello, I'm looking for a way to plot different data series on one graph. I have a series of hourly rainfall and quarterly flow measurements (i.e. 4 times an hour) of a catchment. The rainfall should be plotted in bars, the flow as a line. Both on the same X axe (time) but with different Y axes. The problem is the plot() function does not support add=TRUE... Furthermore I'm not sure
2014 Feb 19
1
Dovecot, mysql, and quota
Hello, I'm running dovecot 2.2 and wanting to get quotas going. I've got the plugins loaded appropriately and am wanting to configure a dictionary backend to talk to my mysql database. I've got a single database called mail which has all the mail-related items in it. One table is for virtual users which postfix uses. It looks like this: CREATE TABLE `virtual_users` ( `id` int(11)
2009 Feb 13
1
Add columns to data frame automatically
Hello fellows: I've een trying to set up a function that performs 100 loops producing the coresponding 100 series. I want to save all those datasets in a dataframe, so I wrote this... prep <- function() # Clase[1]/Categoria[2]/Phi[3]/Rf[4] peso <- c(.0,.03,.3,.6) # Extension del calculo for (i in 1:100) { # Calculos de todas las curvas # Variables (Valor Base) abase
2010 Mar 30
1
dataframe in loop
hello all: I would like to thank those who helped me out of the string problem..but now I got another problem. I used R to query from SQL and got a list of crsp_fundno of G-style mutual funds which is still alive. I use the following codes and got what I want: library(RODBC) channel<-odbcConnect("CRSPFUND") g.crspfundno<-sqlQuery(channel,"select crsp_fundno from Fund_style
2013 Dec 26
1
tests with metadata module
--Repost after subscription as list member --- I made some tests with metadata support in dovecot 2.2.10. Previously I had dovecot 2.2.4 with external metadata plugin who work well. I use dovecot with roundcube and roundcube plugins from kolab project . First, the feature activation was tricky and rather undocumented. I spent about half hour googling, after that I set: imap_metadata = yes and
2006 Sep 20
2
Defining function in template files?
Hi, Is it possible to define a function in a template file? For example, I thought it might be a good idea to define my Debian systems'' /etc/apt/sources.list files based on what level of stability and freeness a system should have. So I have this puppet code: #---------- apt.pp ---------------- define apt-sources-list
2004 Sep 17
1
R CMD check does not checks for superfluous documentation (PR#7231)
Hi! Due to package maintenance I have removed some functions but forgot to update the coresponding Rd files. If R CMD check is checking for missing documentation entries why it does not check for documentation entries which tell the user about nonexisting funcitons? In my opinion checking for documentation entries that document non-existing functions is much more important than the other way
2010 Mar 24
3
string problems in R
Hello all I have been working on my thesis using R. I am a newbie to R and met a problem that bothered me for a while due to my lack of acquaintance of R. I am using R to query from SQL. I got a list of crsp_fundno of G-style mutual funds which is still alive. I use the following codes and got what I want: library(RODBC) channel<-odbcConnect("CRSPFUND")
2010 Aug 24
0
[LLVMdev] help converting llvm metadata into dwarf tags
Hi Roger, On Mon, Aug 23, 2010 at 4:01 PM, Roger Wang <innit42 at gmail.com> wrote: > Dear all, > > I'd like to find the memory location of certain instructions in a > compiled/linked binary. During the IR phase, I tag instructions I'm > interested in with LLVM'-2.7's new metadata (MDNodes with an identifiable > ID). I'd now like to propagate that data
2006 Jul 07
4
How to add Asia token analyzer to ferret simply?
Hi,David Can you give me an example of how to add analyzer to ferret to Asian languages? My web application will have to support multi language search,which means,for example,both Chinese and English will be searched through the form. Currently,I have decided to use the simple token principles,which means that every Chinese character will be a token,although this is not so well in some
2006 Dec 10
5
TDM2400
I have one TDM2404E digium card on asterisk box, after configuring the zaptel and zapata configuration files, I am getting these errors when reloading asterisk: ast_unregister_indication_country: Removed default indication country 'us' setup_zap: Ignoring signalling setup_zap: Ignoring answeronpolarityswitch unable to recognize channel 13-5 what is the reason for that? Thanks,