search for: frist

Displaying 20 results from an estimated 46 matches for "frist".

Did you mean: first
2009 Nov 22
1
how to generate balanced sample from two normal distribution
...oon, I have a question on generating simple randomization data. Thanks for any suggestions. Two normal distribution N(0,1) and N(1,1) A: I want to generate 20 data, 10 from N(0,1) and 10 from (1,1). each observation's indicator (either is from N(0,1) or N(1,1) ) is randomized. I need use the frist 10 data from the generated 20 dataset. (it is not necessary 5 from N(0,1) and 5 from N(1,1) for these 10 data, since the indicator for the 20 data is randomized) . For example, the 10 data's indicator could be 0 0 0 1 0 1 1 0 0 0 (0 means the observation is from N(0,1) and 1 indicates the obse...
2011 Sep 29
2
String manipulation with regexpr, got to be a better way
...me other string function to return not the first instance, but the 2nd (or for that matter 3rd, 4th or 5th instance) of a certain string?    #first find the first occurence of "/" and create a variable for this firstslash <- unlist(regexpr("/", dates, fixed = TRUE)) #then use frist/ to cut the string field into an intermediate variable e.g., from 1/1/2008 to 1/2008. step1 <- substr( dates, (firstslash + 1), nchar(dates) ) #then repeat steps 1 and 2...there's got to be a better way step2 <- unlist(regexpr("/", step1, fixed = TRUE)) #then use step2 to cut s...
2008 Jul 16
3
ODBC, PostgreSql and BDE
My windows application uses BDE and PostgreSQL ODBC driver to access database server. I frist installed Wine on Ubuntu and then installed psqlodbc.exe and BDE. How can now I access ODBC administrator to add and configure PostgreSQL ODBC driver?
2005 Jul 27
3
[LLVMdev] How to define complicated instruction in TableGen (Direct3D shader instruction)
...r1_2 = llvm.shuffle( xxyy ) r3_1 = llvm.x2( r3_0 ) r3_2 = llvm.shuffle( zzzz ) r0_0 = add r1_2, r3_2 r0_1 = llvm.sature( r0_0 ) r0_2 = llvm.select( a ) but it makes the implementing the instruction selector very diffifult. in this example, llvm.select() and llvm.sature() are encountered frist (bootm-up), but they must be 'remembered' and the instruction cannot be generated (BuildMI) until the opcode is known. Which one should I do? -- Tzu-Chien Chiu, 3D Graphics Hardware Architect <URL:http://www.csie.nctu.edu.tw/~jwchiu>
2009 Aug 07
1
add-view for the zfs snapshot
I frist create lun by "stmfadm create-lu ", and add-view , so the initiator can see the created lun. Now I use "zfs snapshot" to create snapshot for the created lun. What can I do to make the snapshot is accessed by the Initiator? Thanks. -- This message posted from opensolaris.or...
2010 Dec 03
1
Date-time Conversion from Numeric Representations
Hi all, I have a dataset called ,dataSet1'. The time column is given in a numeric code beginning with the year and ending with the minutes. Frist I tried the strptime() function to solve the problem. It gave me just the date back (and not the date and time). There is also the ISOdatetime function which didn't work either. I created a dump file which I detached to this mail with the objects ,dataSet1' and ,problem'. Thank you ve...
2004 Aug 20
1
from Newcomtech Co,. Ltd Help us.
How are you? Fristly I would like to introduce myself in a shortly. I'm a newcomer at Newcomtech Co,. Ltd. Nowdays I'm working at TDM40B and TDM04B cards. I have installed Linux hedhat 9.0 and Asterisk software. I have configured the cards. I typed asterisk -vvvc command in the command line and then asterisk...
2007 Aug 07
1
Wireless + samba domain.
hi there, for implementing samba domain, whit wireless suport, what are the possible solutions? the frist i think of is cached logins !! are there any others ? thanks Duarte L?zaro
2006 Jan 25
7
Global Data, where can it go?
I''m developing a stateful Ruby application that needs to keep data in one location where all people accessing the site can modify its contents. This data will be read-from/written to often, so I would prefer for rails to keep it in memory, rather than a database. My frist try involved global variables. After discovering that they were being "re-initialized" with each new user, I put something like this in the application controller: if not $global $global = [] end But, then I had the problem with only certain pages being able to access them. With...
2011 Nov 23
1
Losing custom attributes
Hi All, I was adding a new row of data to my data frame using rbind(). I was surprised to see that after adding new row, I lost my data frame level attibute as well as col level attribute. Please help me to insert a new row at frist or middle position so that my custom attribute is not lost. Here is what I did. age<-c(15,20,18) weight<-c(40,42,30) ### creating my data frame #### mydata <- data.frame(age,weight) ### creating data frame level attribute #### attr(mydata,"myattr")<-c("myinfo")...
2005 Jul 29
0
[LLVMdev] How to define complicated instruction in TableGen (Direct3D shader instruction)
...= llvm.x2( r3_0 ) > r3_2 = llvm.shuffle( zzzz ) > r0_0 = add r1_2, r3_2 > r0_1 = llvm.sature( r0_0 ) > r0_2 = llvm.select( a ) > > but it makes the implementing the instruction selector very diffifult. > in this example, llvm.select() and llvm.sature() are encountered frist > (bootm-up), but they must be 'remembered' and the instruction cannot > be generated (BuildMI) until the opcode is known. > > Which one should I do? >
2009 Apr 24
1
the puzzle of eigenvector and eigenvalue
Dear all I am so glad the R can provide the efficient calculate about eigenvector and eigenvalue. However, i have some puzzle about the procedure of eigen. Fristly, what kind of procedue does the R utilize such that the eigen are obtained? For example, A=matrix(c(1,2,4,3),2,2) we can define the eigenvalue lamda, such as det | 1-lamda 4 | =0 | 2 3-lamda | then we can obtain the lamda=5 and -1 however, i am interesting in...
2008 Apr 10
1
Structural Modelling in R-project
...>enquiries that I have got. In the R-project, when using the StructTS >function on a times series Zt, the programs return this: > >Call: >StructTS(x = Zt) > >Variances: > level slope seas epsilon > 0.168461 0.000000 0.005113 10.743687 > >My frist question is the following: The variances obtained seem to be >numerical values although in the literature (e.g., Kendall and Ord >(1990)), they are detailed as matrices. I need to provide these matrices >in my thesis but I am a bit lost as to how to write them down as. > >Secondly, h...
2005 Jan 19
2
Policy after fsck fixes errors
Hello, Yesterday evening this box crashed and, for once, ext3 was not able to recover automatically. There was an "unexpected inconsistency inode xxxxx has imagic flag set" error and the system would not boot. I fscked from my rescue disk and I guess 20 or 30 errors were fixed by me just selecting "y" at the prompt. The system then booted and, so far as I can tell, the only
2010 Oct 19
4
[LLVMdev] Structure memory layout
Hi LLVM members, I have been working to make target independent memory layout for struct type(Aggregate type) in my team. I think that struct type has different memory layouts according to each target system in current LLVM. To implement target dependent concept for struct type, Frist, I have been implementing common type for struct type on bitcode at compilation time using llvm-gcc and then changing common type to target specific types at code generation time using llc (reconstruct StructLayout). Second, I have been adding two new intrinsic functions as following. 1. "gete...
2011 Feb 08
2
Call files error
...DR field in MySQL ( field name 'azonosito' ) Asterisk is version 1.8.2.3 with freepbx 2.8.1. What I've tried is to create two custom context and place the call through them. The call file: ; First CID SetVar: callid1=0036111188887777 SetVar: azon1=elso hivas azonosito { Viperke } ; Frist phone num Channel: Local/0036701234567 at CustomCallOut-1 WaitTime: 45 MaxRetries: 0 RetryTime: 0 ; 2nd CID SetVar: callid2=0036204313763 SetVar: azon2=masodik hivas azonosito { V1pr: ehehhe } Context: CustomCallOut-2 ; 2nd phone num Extension: 003617654321 The contexts: [CustomCallOut-1] ; set...
2004 Dec 01
5
Running SNMPD at Shorewall 1.4.x
Hi, I need to running snmpd at shorewall gateway (1.4.10g). How to make the rules necessary to do it ? I have 3 interfaces, eth0 (public), eth1 (private) and eth2 (dmz). When I runnig mrtg, I have this message: --- cfgmaker gw-host@localhost > ~netbox-sp/eth0.cfg --base: Get Device Info on gw-host@localhost: SNMP Error: no response received SNMPv1_Session (remote host:
2011 Nov 23
2
SPSS F-test on change in R square between hierarchical models
...<smartguy3k@gmail.com> wrote: > Hi All, > I was adding a new row of data to my data frame using rbind(). I > was surprised to see that after adding new row, I lost my data frame level > attibute as well as col level attribute. Please help me to insert a new > row at frist or middle position so that my custom attribute is not lost. > > Here is what I did. > > age<-c(15,20,18) > weight<-c(40,42,30) > > ### creating my data frame #### > mydata <- data.frame(age,weight) > > ### creating data frame level attribute #### > attr(my...
2005 Mar 10
3
CRAN Task Views: ctv package available
...month I mentioned in several discussions on R-help that Kurt and I were working on tools for "CRAN Task Views" which should help to structure the fast-growing list of packages on CRAN. Now the first version of a package called ctv (for CRAN Task Views) is available from CRAN and also two frist drafts for such views can be seen at http://CRAN.R-project.org/src/contrib/Views/ When you install the ctv package you can also query this from within R via: CRAN.views() install.views("Econometrics", lib = "/path/to/foo") New views can be easily written in an XML-based...
2015 Jun 15
0
[ovirt-users] oVirt 3.5.3 VDSM on CentOS Virt SIG
Il 15/06/2015 12:41, Daniel Helgenberger ha scritto: > Hello Sandro, > > frist thanks for the great news! > > On 15.06.2015 10:28, Sandro Bonazzola wrote: >> Hi, >> today oVirt 3.5.3 has been released[1] >> VDSM 4.16.20 and its dependencies has been tagged as release as well within the Virt SIG build repositories for CentOS Linux 7. >> In order...