Re: [R] triangular matrix inverse

2013-12-03 Thread Martyn Byng
Hi, backsolve() is probably what you are looking for. Martyn -Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On Behalf Of Michael Meyer Sent: 03 December 2013 12:25 To: r-help@r-project.org Subject: [R] triangular matrix inverse Greetings,  

Re: [R] triangular matrix

2012-06-19 Thread lucinka
Hi Jon, thanks a lot, it seems to be working just perfect ;) thank you ! regards, Lucia -- View this message in context: http://r.789695.n4.nabble.com/triangular-matrix-tp4633679p4633809.html Sent from the R help mailing list archive at Nabble.com.

Re: [R] triangular matrix

2012-06-18 Thread Miguel Manese
Hi Lucia, On Mon, Jun 18, 2012 at 6:11 PM, lucinka wrote: > Hello, > > I got this matrix of gentic distances between my samples. it is 85x85 but > only lower half (without diagonal) contains my distances. How can I make a > mean and standard deviation on these distances, please ? You can try so

Re: [R] Triangular matrix upper to down

2011-09-26 Thread m.marcinmichal
Ok, thanks this solution test[lower.tri(test)] <- t(test)[lower.tri(test)] works perfectly well :) Thanks Best marcin M. -- View this message in context: http://r.789695.n4.nabble.com/Triangular-matrix-upper-to-down-tp3845107p3845352.html Sent from the R help mailing list archive at Nabble

Re: [R] Triangular matrix upper to down

2011-09-26 Thread m.marcinmichal
Mhy, I think that this solution It doesn't work with odd dimension. Suppose we have a reference matrix 13x13 (near i present a table format i.e save by write.table). This matrix name a response2. "V1" "V2" "V3" "V4" "V5" "V6" "V7" "V8" "V9" "V10" "V11" "V12" "V13" "1" 0 1.4142135623731 1 1.732050

Re: [R] Triangular matrix upper to down

2011-09-26 Thread William Dunlap
.com] Sent: Monday, September 26, 2011 1:30 PM To: William Dunlap; r-help; m.marcinmichal Subject: Re: [R] Triangular matrix upper to down Nope, I was sloppy and missed that. Thanks ... forwarding to list and OP Michael On Mon, Sep 26, 2011 at 4:26 PM, William Dunlap mailto:wdun...@tibco.com>&g

Re: [R] Triangular matrix upper to down

2011-09-26 Thread R. Michael Weylandt
Dunlap > Spotfire, TIBCO Software > wdunlap tibco.com > > > -Original Message- > > From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] > On Behalf Of R. Michael > > Weylandt > > Sent: Monday, September 26, 2011 1:10 PM > > To: m.ma

Re: [R] Triangular matrix upper to down

2011-09-26 Thread R. Michael Weylandt
On Mon, Sep 26, 2011 at 4:09 PM, R. Michael Weylandt < michael.weyla...@gmail.com> wrote: > How about: test[lower.tri(test)] <- test[upper.tri(test)] > > Try it with this data so you can see that it actually works: (the ones > obscure possible false solutions) > > > test <- matrix(ncol = 4, nrow =