Member of the matrix class.
c = primes(a)
Computes all primes less than or equal to a number you specify. A natural number is prime if and only if the only divisors of that number are 1 and the number itself.
| Name | Description |
| a | Specifies a natural number. a must be less than or equal to 2^32-1. |
| Name | Description |
| c | Returns all primes less than a. c is a row vector. |
C = primes(101)