Displaying 2 results from an estimated 2 matches for "c432".
Did you mean:
c32
2011 Apr 20
2
get cells by the combination of their column and row names
Hi,
I have a (correlation) matrix and I want to select a subset of its cells depending on the combination of their column and row names.
This illustrates my problem: mtrx <- matrix(c(1,2,3,4,5,6,7,8,9), nrow=3, ncol=3, dimnames = list(c('c132','c432', 'c233'), c('r132','r233', 'r432')))> mtrx r132 r233 r432c132 1 4 7c432 2 5 8c233 3 6 9
At this point I want to compute the mean of the cells in which the column and the row names share the same suffix (i.e., the cells mtrx[1,1...
2012 Oct 01
1
BUG to compile dovecot 2.1.10 on Debian 4.0, using gcc 4.1.2
...--------------------------------------- --------
417a418
+ Int stat = status-> status;
426c427
- If (WIFSIGNALED (status-> status)) {
---
+ If (WIFSIGNALED (stat)) {
429c430
- Dec2str (status-> pid), WTERMSIG (status-> status));
---
+ Dec2str (status-> pid), WTERMSIG (stat));
431.432 c432, 433
-} Else if (WIFEXITED (status-> status)) {
- Request-> exit_status WEXITSTATUS = (status-> status);
---
+} Else if (WIFEXITED (stat)) {
+ Request-> exit_status WEXITSTATUS = (stat);
-------------------------------------------------- --------
With this change worked perfectly ntant...