Accessing elements of built in primes function

How can the a particular prime of the primes function, which returns a double, be accessed?
primes(15)
class(primes(15))

Answers (1)

p = primes(15);
p(1) is the first element
p(2) is the second element
etc.

This question is closed.

Asked:

on 11 Nov 2020

Closed:

on 20 Aug 2021

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!