|
[Date Index]
[Thread Index]
[Author Index]
Re: How to construct symmetric matrix from just a one half matrix
- To: mathgroup at smc.vnet.net
- Subject: [mg110395] Re: How to construct symmetric matrix from just a one half matrix
- From: Raffy <adraffy at gmail.com>
- Date: Wed, 16 Jun 2010 05:40:10 -0400 (EDT)
- References: <hv76li$k4j$1@smc.vnet.net>
On Jun 15, 2:30 am, dragec <culino... at gmail.com> wrote:
> please help me with simple to apply function that will construct
> symmetric matrix from given just a half matrix with diagonal.
> Eg:
>
> From:
> 1 0 0 0
> 2 3 0 0
> 4 9 5 0
> 2 2 3 4
>
> To give:
>
> 1 2 4 2
> 2 3 9 2
> 4 9 5 3
> 2 2 3 4
(* requires m is square and lower triangular *)
symmetrify[m_] := m + Transpose@LowerTriangularize[m, -1];
Prev by Date:
Re: How to construct symmetric matrix from just a one half
Next by Date:
Re: How to construct symmetric matrix from just a one
Previous by thread:
How to construct symmetric matrix from just a one half matrix
Next by thread:
Re: How to construct symmetric matrix from just a one half matrix
|