mirror of
https://bitbucket.org/Mattrixwv/octavefunctions.git
synced 2025-12-06 18:53:57 -05:00
22 lines
426 B
Matlab
22 lines
426 B
Matlab
%ProjectEuler/Problem7.m
|
|
%This is a script to answer Problem 7 for Project Euler
|
|
%What is the 10001th prime number?
|
|
|
|
%Setup the variables
|
|
counter = 1000;
|
|
primeList = [];
|
|
|
|
%Cycle through the prime numbers until you get the correct number
|
|
while(size(primeList)(2) < 10001)
|
|
primeList = primes(counter);
|
|
counter += 1000;
|
|
end
|
|
|
|
%Print the number
|
|
primeList(10001)
|
|
|
|
%Cleanup the variables
|
|
clear ans;
|
|
clear counter;
|
|
clear primeList;
|