300x300
512.png
๐งต Untitled Thread
Anonymous at Wed, 23 Mar 2022 21:43:30 UTC No. 888067
How would you go about describing the set of 512 binary variables in a 3x3 grid like this? Or of any number of rows and columns?
How would you go about writing this for WolframAplha?
https://www.wolframalpha.com/
Anonymous at Wed, 23 Mar 2022 21:51:51 UTC No. 888069
The complete set is 512 symbols. It's just binary variation of 9 grid coordinate 'points'.
How do you describe it to WolframAlpha to get it to generate it?
827x2046
1648083746125.png
Anonymous at Thu, 24 Mar 2022 01:06:29 UTC No. 888095
this is similar to what i'm looking for but its just a stylized font.. i want the entire set in this format
Anonymous at Thu, 24 Mar 2022 01:34:55 UTC No. 888099
https://www.youtube.com/watch?v=47W
Anonymous at Thu, 24 Mar 2022 01:50:27 UTC No. 888105
801x401
binary grid.png
Anonymous at Thu, 24 Mar 2022 03:05:40 UTC No. 888115
>>888095
Something like this?
Anonymous at Thu, 24 Mar 2022 06:44:49 UTC No. 888130
>>888115
exactly but how tho?
Anonymous at Thu, 24 Mar 2022 12:31:16 UTC No. 888150
>>888130
https://cmdlinetips.com/2019/02/how
something like this?
Anonymous at Thu, 24 Mar 2022 22:37:40 UTC No. 888226
>>888130
I just made it with javascript, drawing rectangles on a canvas.
Basically, I incremented a counter from 1 to 512 and drew blocks for whichever bits were set at each number. (look up bitwise-and if you aren't already familiar.)
That's the easiest way, I think - realizing that simple counting is a good way to enumerate the possible binary combinations.
Good luck working in WolframAlpha though LUL