search for: permuat

Displaying 20 results from an estimated 20 matches for "permuat".

Did you mean: permut
2018 Mar 30
3
getting all circular arrangements without accounting for order
Dear friends, I would like to get all possible arrangements of n objects listed 1:n on a circle. Now this is easy to do in R. Keep the last spot fixed at n and fill in the rest using permuations(n-1, n-1) from the gtools package. However, what if clockwise or counterclockwise arrangements are the same? I know that half of the above (n - 1)! arrangements are redundant. Is there an easy way to list these (n-1)!/2 arrangements? I thought of only listing the first half from a call to p...
2009 Aug 11
1
nested repeated measures MANOVA using adonis
I am trying to apply a permuation-based MANOVA (Anderson 2001) to a set of morphological data from three ecomorphs of fish reared under two different conditions and measured at two points during ontogeny. I will supply a distance matrix based on Procrustes distances calculated outside of vegan. I have not found an example of a...
2018 Mar 30
0
getting all circular arrangements without accounting for order
...> On Mar 29, 2018, at 9:48 PM, Ranjan Maitra <maitra at email.com> wrote: > > Dear friends, > > I would like to get all possible arrangements of n objects listed 1:n on a circle. > > Now this is easy to do in R. Keep the last spot fixed at n and fill in the rest using permuations(n-1, n-1) from the gtools package. > > However, what if clockwise or counterclockwise arrangements are the same? I know that half of the above (n - 1)! arrangements are redundant. > > Is there an easy way to list these (n-1)!/2 arrangements? > > I thought of only listing t...
2018 Mar 30
3
getting all circular arrangements without accounting for order
...PM, Ranjan Maitra <maitra at email.com> wrote: > > > > Dear friends, > > > > I would like to get all possible arrangements of n objects listed 1:n on a circle. > > > > Now this is easy to do in R. Keep the last spot fixed at n and fill in the rest using permuations(n-1, n-1) from the gtools package. > > > > However, what if clockwise or counterclockwise arrangements are the same? I know that half of the above (n - 1)! arrangements are redundant. > > > > Is there an easy way to list these (n-1)!/2 arrangements? > > > &g...
2005 Dec 15
3
[LLVMdev] Vector LLVM extension v.s. DirectX Shaders
...ed) I consider to add new instructions, instead of intrinsic, to LLVM. However, there are two options. In the vector LLVM extension, there are dedicated instructions manipulating the vectors like 'extract', 'combine', and 'permute'. DSP and other scientific programs do not permuate the vectors as frequent as 3D programs do. Almost each 3D instruction requires to permuate its operands. For example: // Each register is a 4-component vector // the names of the components are x, y, z, w add r0.xy, r1.zxyw, r2.yyyy The components of r1 and r2 and permuted before the addit...
2018 Mar 30
0
getting all circular arrangements without accounting for order
...tra <maitra at email.com> wrote: >>> >>> Dear friends, >>> >>> I would like to get all possible arrangements of n objects listed 1:n on a circle. >>> >>> Now this is easy to do in R. Keep the last spot fixed at n and fill in the rest using permuations(n-1, n-1) from the gtools package. >>> >>> However, what if clockwise or counterclockwise arrangements are the same? I know that half of the above (n - 1)! arrangements are redundant. >>> >>> Is there an easy way to list these (n-1)!/2 arrangements? >>&...
2008 Dec 11
3
generate combination multiset (set with repetition)
...2 [3,] 1 3 [4,] 2 2 [5,] 2 3 [6,] 3 3 subsets(set, 2, allow.repeat=T) should work, but I can't get the multic package to install, t(combn(set,2)) was suggested but it doesn't produce repetitions; expand.grid(rep(list(1:3), 2)) was also suggested, but it produces permuations, not combinations. Additionally, I would like to iterate through each resultant set for large n (similar to the description for getNextSet {pcalg}). Any suggestions? Reuben Cummings
2018 Mar 30
2
getting all circular arrangements without accounting for order
...; wrote: > >>> > >>> Dear friends, > >>> > >>> I would like to get all possible arrangements of n objects listed 1:n on a circle. > >>> > >>> Now this is easy to do in R. Keep the last spot fixed at n and fill in the rest using permuations(n-1, n-1) from the gtools package. > >>> > >>> However, what if clockwise or counterclockwise arrangements are the same? I know that half of the above (n - 1)! arrangements are redundant. > >>> > >>> Is there an easy way to list these (n-1)!/2 arr...
2005 Dec 15
0
[LLVMdev] Vector LLVM extension v.s. DirectX Shaders
...ably stay intrinsics. In general, intrinsics are far easier to add than instructions. > In the vector LLVM extension, there are dedicated instructions > manipulating the vectors like 'extract', 'combine', and 'permute'. DSP > and other scientific programs do not permuate the vectors as frequent > as 3D programs do. Yes, I think that rob is interested in porting these instructions to mainline LLVM, he just hasn't had time so far. > Almost each 3D instruction requires to permuate its > operands. For example: > > // Each register is a 4-compone...
2006 Apr 08
0
[LLVMdev] RE: LLVM extension v.s. DirectX Shaders
...should be straight-forward. Take a look at llvm/include/llvm/IntrinsicsPowerPC.td for examples. Adding an intrinsic to LLVM now is just a matter of adding it to the include/llvm/Intrinsics*.td file and adding a line to your code generator .td file. > DSP and other scientific programs do not permuate the vectors as > frequent as 3D programs do. Almost each 3D instruction requires to > permuate its operands. For example: > > // Each register is a 4-component vector > // the names of the components are x, y, z, w > add r0.xy, r1.zxyw, r2.yyyy > > The components of r1...
2018 Mar 30
0
getting all circular arrangements without accounting for order
...gt;>> >>>>> Dear friends, >>>>> >>>>> I would like to get all possible arrangements of n objects listed 1:n on a circle. >>>>> >>>>> Now this is easy to do in R. Keep the last spot fixed at n and fill in the rest using permuations(n-1, n-1) from the gtools package. >>>>> >>>>> However, what if clockwise or counterclockwise arrangements are the same? I know that half of the above (n - 1)! arrangements are redundant. >>>>> >>>>> Is there an easy way to list these...
1999 Apr 30
1
Question on the idiom: start <- coef; start[fit$pivot] <- coef
...is a vector of coefficients, set by .Fortran("dqrls", ...). fit$pivot is a vector of integer indexes (indicating how dqrls permuted the columns of x). If coef has n elements, fit$pivot is a permutation of seq(1,5). start[fit$pivot] is simple enough, but the assignment performs a futher permuation that I don't understand. For example > pivot <- c(1,3,4,2,5) > a <- c(100,200,300,400,500) > b <- a > b[pivot] <- a > b [1] 100 400 200 300 500 I guess there must be a replacement function for [], but I haven't been able to dig up any documentation on it (a...
2015 Mar 12
2
PROBLEMA DE MEMORIA AL HACER PERMUTACIONES
Buenas tardes amigos, De nuevo por aqui con un incoveniente, tengo el siguiente arreglo: > MuestraS [1] 1 0 0 0 1 0 1 1 1 1 1 0 Deseo realizar todas las permutaciones posibles para luego tomar una muestra aleatoria pequeña, esto lo debo hacer varias veces incrementando el largo del arreglo "MuestraS". El inconveniente esta en que al hacer las permutaciones con este arreglo de 12
2010 Apr 24
2
multiple paired t-tests without loops
...ing to implement Blair & Karniski's (1993) permutation test. I've included a sample data frame below. This data frame represents the conditional means (C1, C2) for 3 subjects in 2 consecutive samples of a continuous data set (e.g. ERP waveform). Each sample includes all possible permuations of the subject means (2^N), which is 8 in this case. The problem: I need to run a paired t-test on each SampleXPermutation set and save the maximum t-value obtained for each sample. The real data set has 16 subjects (2^16 permutations) and 500 samples, which leads to more than 32 million t...
2002 Mar 18
3
function design
...I am more interested in how to have the "x <<- Y+1" part of the function to change x in place for purposes of a much larger function. I have been wrestling with various forms of the assign, as.name, deparse, substitute (by now you probably sense a air of desperation) commands, and permuations thereof. These variables will be in a detached data.frame (not shown here). Thanks for your time. Michaell -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", &quo...
2005 May 18
2
Call forwarding...
...l.c:1957 ast_request: No channel type registered for '' May 18 10:20:26 NOTICE[24416]: app_dial.c:927 dial_exec_full: Unable to create channel of type '' (cause 66) == Everyone is busy/congested at this time (1:0/0/1) The call then drops into voicemail... I've tried various permuations but still no call is made to the mobile number. Any ideas? Cheers, Mark I should mention that I have tried using the call forward function of the sip phones, but a) this means configuring the phones and some are remote and behind firewalls and b) It doesn't work...
2010 Jun 21
2
Garch in the mean
Hello, I was wondering if anyone knew how to fit a series using a Garch-M (Garch in the mean) model. From what I gathered from the documentation, it does not seem to be implemented in either fGarch, fSeries, or tSeries. Perhaps there is an option that allows this functionality. Otherwise, if it's possible to modify an existing function I would appreciate any guidance on how to go about
2006 Oct 16
2
Re : Re : Generate a random bistochastic matrix
Yes, you're right. In fact, it's just an adaptation of a matlab command and the author advises using N^4 replications that's why it's the default in the function. The bistochastic matrix is not my subject of interest, but I need it to perform some random tranformation of a vector of incomes. Florent Bresson ----- Message d'origine ---- De : Richard M. Heiberger <rmh at
2006 Oct 16
5
Re : Generate a random bistochastic matrix
Thanks, I tried someting like this, but computation takes times for large matrices btransf <- function(y,X=length(y)^4) { N <- length(y) bm <- matrix(rep(1/N,N^2),N,N) for(j in 1:X){ coord <- sample(1:N,4,replace=T) d <- runif(1,0,min(bm[coord[1],coord[2]],bm[coord[3],coord[4]]))
2008 Aug 04
16
zpool upgrade wrecked GRUB
Machine is running x86 snv_94 after recent upgrade from opensolaris 2008.05. ZFS and zpool reported no troubles except suggesting upgrade for from ver.10 to ver.11. seemed like a good idea at the time. system up for several days after that point then took down for some unrelated maintenance. now will not boot the opensol, drops to grub prompt, no menus. zfs was mirrored on two disks c6d0s0 and