Difference between revisions of "ZCubes/Pascal vs Sierpinski Triangle"
Jump to navigation
Jump to search
(→Code) |
|||
Line 49: | Line 49: | ||
m=64; | m=64; | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<<[[ZCubes_Videos#ZCubes_Videos_List | ZCubes Videos ]] | <<[[ZCubes_Videos#ZCubes_Videos_List | ZCubes Videos ]] |
Revision as of 04:41, 18 August 2020
Pascal vs Sierpinski Triangle
This video demonstrates how to generate Pascal triangle in Z and derive Sierpinski triangle from Pascal triangle in ZCubes.
Video
Code
m=10; pt=PASCALTRIANGLE(m); a=pt .map( function(r,i) { var prefix=(REPEATCHAR(" ",(2*m-(2*i+1))/2).split("")); return( prefix .concat(r.join(", ,").split(",")) .concat(prefix) ) } ); (a);
m=32; pt=PASCALTRIANGLE(m);
m=10; pt=PASCALTRIANGLE(m).$(x=>x%2) a=pt .map( function(r,i) { var prefix=(REPEATCHAR(" ",(2*m-(2*i+1))/2).split("")); return( prefix .concat(r.join(", ,").split(",")) .concat(prefix) ) } ); (a);
m=32;
m=64;
<< ZCubes Videos
<< About ZCubes
© Copyright 1996-2020, ZCubes, Inc.