Determine which array elements are prime
TF = isprime(X)
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.
X
TF(i)
true
X(i)
false
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.
2
3
0
6
10
x = uint16([333 71 99]); tf = isprime(x)
tf = 1x3 logical array 0 1 0
71 is prime, but 333 and 99 are not.
71
333
99
Input values, specified as a scalar, vector, or array of real, nonnegative integer values.
Example: 17
17
Example: [1 2 3 4]
[1 2 3 4]
Example: int16([127 255 4095])
int16([127 255 4095])
Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64
single
double
int8
int16
int32
int64
uint8
uint16
uint32
uint64
Usage notes and limitations:
The maximum double precision input is 2^33.
2^33
The maximum single precision input is 2^25.
2^25
The input X cannot have type int64 or uint64.
is* | primes
is*
primes
You have a modified version of this example. Do you want to open this example with your edits?