How to print the first 100 primes including 1 as a vector
Mostrar comentarios más antiguos
i need to print vectors containing all prime numbers less than 100, including 1 as 1 is usually not shown as a prime number in matlab. Thanks
Respuesta aceptada
Más respuestas (1)
Udit Gupta
el 29 de Mayo de 2014
To print prime numbers less than 100 use
primeNums = [1 primes(100)]
To print first 100 frime numbers use
primeNums = [1 primes(523)]
Categorías
Más información sobre Discrete Math en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!