No BSD License  

Highlights from
factor2.m

2.0

2.0 | 1 rating Rate this file 3 Downloads (last 30 days) File Size: 1.17 KB File ID: #4966

factor2.m

by David Terr

 

19 May 2004 (Updated 26 May 2004)

factor2(n) returns the prime factorization of n as a k by 2 matrix.

| Watch this File

File Information
Description

Given a nonnegative integer n, factor2(n) returns the prime factorization of n as a 2 by k matrix, with the k distinct prime factors in the left column and exponents in the right column.

MATLAB release MATLAB 6.0 (R12)
Tags for This File  
Everyone's Tags
Tags I've Applied
Add New Tags Please login to tag files.
Comments and Ratings (3)
25 May 2004 Jos vdG

or use Matlab:
F = factor(A) ;
X(:,1) = unique(F(:)') ;
X(:,2) = hist(F,X(:,1)) ;

25 May 2004 Jos vdG

Sorry, small mistake in row/columns
F = factor(A) ;
X(1,:) = unique(F(:)') ;
X(2,:) = hist(F,X(:,1)) ;

15 May 2006 Not Happy Jan

Relying on factor() means you restrict yourself to numbers less than 2^32

Please login to add a comment or rating.
Updates
26 May 2004

I modified this program so that it sorts the prime factors by columns instead of by rows, allowing for more convenience, especially with large numbers. I also modified it so it now works with negative numbers as well.

Tag Activity for this File
Tag Applied By Date/Time
symbolic math David Terr 22 Oct 2008 07:20:24
factor David Terr 22 Oct 2008 07:20:24
divisor David Terr 22 Oct 2008 07:20:24
prime factorization David Terr 22 Oct 2008 07:20:24
mathematics David Terr 22 Oct 2008 07:20:24

Contact us at files@mathworks.com