Member of the basic class.
c = factor(a)
Computes the prime factorization of a given number. A number is prime if and only if the number is a positive integer with exactly one positive divisor other than 1.
| Name | Description |
| a | Specifies the number you want to factor. a is a positive integer. a has an upper limit of 2^32-1. |
| Name | Description |
| c | Returns the set of prime numbers whose product equals a. c is a row vector of primes. The factors in c might repeat. For example, factor(16) returns the vector [2, 2, 2, 2]. |
C = factor(1000001)