Difference between revisions of "ZCubes/Pascal vs Sierpinski Triangle"
Jump to navigation
Jump to search
(→Code) |
|||
| Line 9: | Line 9: | ||
==Code== | ==Code== | ||
| − | + | <pre> | |
m=32; | m=32; | ||
pt=PASCALTRIANGLE(m).$(x=>x%2) | pt=PASCALTRIANGLE(m).$(x=>x%2) | ||
| Line 23: | Line 23: | ||
); | ); | ||
(a); | (a); | ||
| + | </pre> | ||
<<[[ZCubes_Videos#ZCubes_Videos_List | ZCubes Videos ]] | <<[[ZCubes_Videos#ZCubes_Videos_List | ZCubes Videos ]] | ||
Revision as of 04:37, 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=32;
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);
<< ZCubes Videos
<< About ZCubes
© Copyright 1996-2020, ZCubes, Inc.