in reply to Re: upper or lower triangular matrix to full
in thread upper or lower triangular matrix to full
I used the following code to generate the input matrix:
my $SIZE = 1000; sub create_matrix { my ($filename) = @_; open my $OUT, '>', $filename or die $!; for my $i (1 .. $SIZE) { for my $j ( 1 .. $SIZE ) { print {$OUT} $i <= $j ? $i * $j : 'NA'; print {$OUT} ' ' unless $SIZE == $j; } print {$OUT} "\n"; } }
($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: upper or lower triangular matrix to full
by holli (Abbot) on Sep 02, 2017 at 07:05 UTC | |
by choroba (Cardinal) on Sep 02, 2017 at 08:49 UTC | |
by Anonymous Monk on Sep 02, 2017 at 13:41 UTC | |
|
Re^3: upper or lower triangular matrix to full
by Anonymous Monk on Sep 02, 2017 at 00:46 UTC |