You are currently viewing the gmlscripts.pro static mirror. Forum access and script submissions are not available through this mirror.

Invert gmlscripts.pro

factor

factor(number)
number positive integer, real
COPY
  1. /// factor(number)
  2. //
  3. // Returns a ds_list containing the prime factors of a given integer.
  4. //
  5. // number positive integer, real
  6. //
  7. /// gmlscripts.pro/license
  8. {
  9. var num,dsid,check;
  10. num = argument0;
  11. dsid = ds_list_create();
  12. check = 2;
  13. while (sqr(check) <= num) {
  14. if (num mod check == 0) {
  15. ds_list_add(dsid,check);
  16. num = num div check;
  17. }else{
  18. check += 1;
  19. }
  20. }
  21. if (num != 1) {
  22. ds_list_add(dsid,num);
  23. }
  24. return dsid;
  25. }

Contributors: xot

GitHub: View · Commits · Blame · Raw