Feeds
已回答
Function to find the next prime number...
function k = nxt_prime(n) k=n+1; while ~isprime(k) k=k+1; end end
Function to find the next prime number...
function k = nxt_prime(n) k=n+1; while ~isprime(k) k=k+1; end end
5 years 前 | 0