Main Content

isprime

Determine which array elements are prime

Description

example

TF = isprime(X) returns a logical array the same size as X. The value at TF(i) is true when X(i) is a prime number. Otherwise, the value is false.

Examples

collapse all

tf = isprime([2 3 0 6 10])
tf = 1x5 logical array

   1   1   0   0   0

2 and 3 are prime, but 0, 6, and 10 are not.

x = uint16([333 71 99]);
tf = isprime(x)
tf = 1x3 logical array

   0   1   0

71 is prime, but 333 and 99 are not.

Input Arguments

collapse all

Input values, specified as a scalar, vector, or array of real, nonnegative integer values.

Example: 17

Example: [1 2 3 4]

Example: int16([127 255 4095])

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

Extended Capabilities

Version History

Introduced before R2006a