myfactor

This function finds the factors of very large numbers (up to 10^14)
ダウンロード: 849
更新 2008/5/29

ライセンスの表示

To find the prime factors of any number up to 2^32 (about 4.3*10^9), you can use MATLAB's built-in function factor.m

For integers greater than 2^32, try this program, which guarantees a result up to 10^14, thus extending the domain of inputs 23,000-fold.

(This file is an adaptation of MATLAB's function primes.m)

Example:

myfactor(2^32+1)
ans = [1 641 6700417]

引用

John T. McCarthy (2024). myfactor (https://www.mathworks.com/matlabcentral/fileexchange/20059-myfactor), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2006a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersElementary Math についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.0.0.0

Attempt to improve presentation, following John D'Errico's review.