MATLAB: Primes function

algebramathprimeprimesstatistics

Is there a way to use the prime function to find the prime numbers between two numbers? I want to find the prime numbers between 20,000 and 10,000 and save that to a variable. primes(20000) gives me them all the way to zero and if i try to subtract primes(20000) and primes(10000) it won't let me because there not the same size. Any ideas? Thanks.

Best Answer

setdiff(primes(20000),primes(10000))