-
Notifications
You must be signed in to change notification settings - Fork 5
Berikut ini akan diuraikan tentang Formasi Angka Delapan (8) kedalam piramida data dari diagram berupa detil konsep dan modul² yang dipakai sebagai dasar pemrograman.
142857 x 8 = 1,142,856
114 = 19 x 6
285 = 19 x 15
1 + 5 = 6
Berikut penampakkan dari hasil pewarnaan dari bilangan prima yang ditulis dalam kode python.
for x, y, n in zip(th_numbers, r_numbers, n_numbers):
ax.scatter( (x,), (y,), color="gray", s=points_size )
if C < 30:
plt.text(x,y,'%i' % n, fontsize=font_size )
for x, y, n in zip(th_primes, r_primes, n_primes):
ax.scatter( (x,), (y,), color="red", s=points_size )
if C < 30:
plt.text(x,y,'%i' % n, fontsize=font_size )
Sekarang bandingkan garis yang dibentuk olehnya dengan garis radial dari sarang laba² (lihat garis Radial Line yang berwarna merah):
This documentation is mapped under Mapping and licensed under Apache License, Version 2.0.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Copyright (c) 2018-2020 Chetabahana Project