Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
USING: arrays fry io kernel math math.combinatorics
|
||||
math.matrices prettyprint sequences ;
|
||||
|
||||
: pascal ( n quot -- m )
|
||||
[ dup 2array <coordinate-matrix> ] dip
|
||||
'[ first2 @ nCk ] matrix-map ; inline
|
||||
|
||||
: lower ( n -- m ) [ ] pascal ;
|
||||
: upper ( n -- m ) lower flip ;
|
||||
: symmetric ( n -- m ) [ [ + ] keep ] pascal ;
|
||||
|
||||
5
|
||||
[ lower "Lower:" ]
|
||||
[ upper "Upper:" ]
|
||||
[ symmetric "Symmetric:" ] tri
|
||||
[ print simple-table. nl ] 2tri@
|
||||
Loading…
Add table
Add a link
Reference in a new issue