search for: concatenation

Displaying 20 results from an estimated 1762 matches for "concatenation".

2004 Mar 26
1
Upgrading LDAP entries from 2.2.7 for Samba 3 not happening
...his [root@ldap /]# net getlocalsid bash: net: command not found So i can't get the SID from this machine. I decide to just make one up and try that. /convertSambaAccount --input=old.ldif --output new.ldif --changetype=modify --sid=S-1-0-0 I end up with this! Use of uninitialized value in concatenation (.) or string at /convertSambaAccount line 176, <GEN0> line 1008. Use of uninitialized value in concatenation (.) or string at /convertSambaAccount line 172, <GEN0> line 1009. Use of uninitialized value in concatenation (.) or string at /convertSambaAccount line 176, <GEN0> line 1...
2015 Jun 16
5
Improving string concatenation
Hi, first time poster here. During my time using R, I have always found string concatenation to be (what I feel is) unnecessarily complicated by requiring the use of the paste() or similar commands. When searching for how to concatenate strings in R, several top search results show answers that say to write your own function or override the '+' operator. Sample code like the fol...
2012 Sep 14
4
concatenating two vectors
Dear all, I want to concatenate the elements of two vectors such as a<-c("a1","a2") b<-c("b1","b2") and obtain "a1b1", "a1b2","a2b1","a2b2" I tried the paste and paste0 functions, but they yielded elementwise concatenation such as "a1b1","a2b2" I am wondering that is there an efficient way of doing my wish, for instance without using for loop etc. Best Ozgur -- View this message in context: http://r.789695.n4.nabble.com/concatenating-two-vectors-tp4643139.html Sent from the R help mailing...
2015 Jun 18
1
Improving string concatenation
Gabor Csardi writes: > Btw. for some motivation, here is a (surely incomplete) list of > languages with '+' as the string concatenation operator: > > ALGOL 68, BASIC, C++, C#, Cobra, Pascal, Object Pascal, Eiffel, Go, > JavaScript, Java, Python, Turing, Ruby, Windows Powers hell, > Objective-C, F#, Sc-ala, Ya. The situation for R is rather different from that of a language (as many of the above) in which variables ar...
2006 Apr 15
1
logwatch from cronjob
Hello, the last 2-3 days i have a saden problem with logwatch wich i call through a cron job. when i ran the cronjob i get this continues error for the script : ---- Use of uninitialized value in concatenation (.) or string at /etc/log.d/scripts/shared/applystddate line 43, <STDIN> line 26062. Use of uninitialized value in concatenation (.) or string at /etc/log.d/scripts/shared/applystddate line 43, <STDIN> line 26062. Use of uninitialized value in concatenation (.) or string at /etc/log....
2012 May 21
2
Can't populate LDAP directory with smbldap-populate
...when I try to populate LDAP directory I got the following error messages # smbldap-populate -a Administrator -g 10000 -l 11111 -r 10000 -u 10000 Populating LDAP directory for domain SYSADM (S-1-5-21-206255134-223837211-2022137911) (using builtin directory structure) Use of uninitialized value in concatenation (.) or string at /usr/sbin/smbldap-populate line 483, <DATA> line 303. Use of uninitialized value in string eq at /usr/sbin/smbldap-populate line 484, <DATA> line 303. entry already exist. Use of uninitialized value in concatenation (.) or string at /usr/sbin/smbldap-populate line 483,...
2006 Apr 17
0
logwatch
...-ID: <4440BB2B.60804 at patris.gr> Content-Type: text/plain; charset=ISO-8859-7; format=flowed Hello, the last 2-3 days i have a saden problem with logwatch wich i call through a cron job. when i ran the cronjob i get this continues error for the script : ---- Use of uninitialized value in concatenation (.) or string at /etc/log.d/scripts/shared/applystddate line 43, <STDIN> line 26062. Use of uninitialized value in concatenation (.) or string at /etc/log.d/scripts/shared/applystddate line 43, <STDIN> line 26062. Use of uninitialized value in concatenation (.) or string at /etc/log....
2003 Feb 08
0
[Bug 46] New: ..patch-o-matic: nfnetlink_conntrack.c or -.h ... compile failure:
...ons.h -nostdinc -I /usr/lib/gcc-lib/i386-redhat-linux/3.2/include -DKBUILD_BASENAME=nfnetlink -DEXPORT_SYMTAB -c nfnetlink.c cc1: warning: -malign-functions is obsolete, use -falign-functions nfnetlink.c: In function `nfnetlink_subsys_register_Re3f406ed': nfnetlink.c:85: warning: concatenation of string literals with __FUNCTION__ is deprecated nfnetlink.c: In function `nfnetlink_subsys_unregister_Re44f401f': nfnetlink.c:97: warning: concatenation of string literals with __FUNCTION__ is deprecated nfnetlink.c: In function `nfnetlink_find_client': nfnetlink.c:123: warn...
2005 Dec 15
2
concatenate ogg/theora files
Hi, I have multiple ogg/theora files, with different bitrate. That is the big problem, because I want to broadcast them using ezstream/icecast and the connection between ezstream and icecast is always lost when switching between files. They have the same resolution but different quality. Is there a tool to concatenate/normalize several files to a big homogeneous one? -- A powerfull GroupWare,
2006 Feb 13
7
Concatenation
I have this: <%= @tech_standard.category + " " + @tech_standard.point + "." + @tech_standard.subpoint %> I get this error: cannot convert Fixnum into String point and subpoint are number. How do I concatenate those values? Seth Buntin Web Resources Coordinator Kentucky Academy of Technology Education Murray State University --------------
2003 Apr 16
5
besoin d'aide
J'aimerais savoir si la fonction merge() est la seule disponible pour concatener des tableaux de donn?es? Est-ce normal que l'ex?cution soit lente?
2006 May 30
4
Automate concatenation?
...vectors with similar names - a1, a2,..., a10 - which should be concatenated into one. Using c(a1,a2,a3,a4,a5,a6,a,a8,a9,a10) naturally works, but I would like to do it with less manual input. My attempts to use paste() gives a vector of the vector names, see below. The question is how to do the the concatenation? Any suggestions? paste("a",1:10,sep="") Robert
2009 Jul 31
2
concatenating multiple columns from files
R-users, I want to concatenate columns from different files in a single object. I'm doing bad. My peace of code is as follow: rawdata <- list.files("./data") for (i in rawdata) { mat[ ] <- read.table(paste(i ,sep="")) } At the end of the loop I have just one column. What I'm doing wrong? Thanks, Fred -- View this message in context:
2015 Jun 17
0
Improving string concatenation
Hi Joshua, On 06/16/2015 03:32 PM, Joshua Bradley wrote: > Hi, first time poster here. During my time using R, I have always found > string concatenation to be (what I feel is) unnecessarily complicated by > requiring the use of the paste() or similar commands. > > > When searching for how to concatenate strings in R, several top search > results show answers that say to write your own function or override the > '+' operato...
2009 Sep 30
4
How do I do simple string concatenation in R?
Dear R gurus How do I do simple string concatenation in R? For example: A = "klm" B = "jjj" How can I assign a value to C such that C == "klmjjj" is True? Thank you Arie [[alternative HTML version deleted]]
2013 Jan 22
1
Concatenate two lists, list by list
Dear all, I would like to concatenate the lists below str(Part2$dataset) List of 3  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ...  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ...  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ... str(Part1$dataset) List of 3  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ...  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ...  $ : num [1:16001] 0 0 0 0 0 0 0 0 0 0 ... I tried concatenating
2008 Apr 01
4
booting domU with multiple concatenated ramdisks?
Hi! Some bootloaders (eg. syslinux) have to ability to load multiple ramdisks, effectively concatenating them. This makes it very easy to augment ramdisks, like eg. customizing an installer. Can I do something similar with XEN? Separating the ramdisk cpio arhives with commas in the config file didn''t work... -- Thanks, Feri. _______________________________________________ Xen-users
2015 Jun 17
3
Improving string concatenation
...ide `+` to concatenate strings, I would make it stick > to the recycling scheme used by arithmetic and comparison operators > (which is the most sensible of all IMO). Yeah, I agree, paste's recycling rules are sometimes painful. This could be "fixed" with a nice new '+' concatenation operator, too. :) Gabor > H. [...]
2015 Jun 17
4
Improving string concatenation
Bad choice of words I'm afraid. What I'm ultimately pushing for is a feature request. To allow string concatenation with '+' by default. Sure I can write my own string addition function (like the example I posted previously) but I use it so often that I end up putting it in every script I write. It is ultimately a matter of readability and syntactic sugar I guess. As an example, I work in the bioinforma...
2019 Jan 24
2
Concatenating DWARF location expressions
Hello, Could someone explain to me what the rules are for concatenation of DWARF location expressions? For example in lib/CodeGen/PrologEpilogInserter.cpp there is a call to DIExpression::prepend to concatenate the stack slot address of a variable to an existing expression. Now the problem here is that the former is a 'Memory location description' while the l...