Question: Matlab Problem: Write a function called PrimeFinder that receives an integer as an input argument, and provides an output argument called Primes that is a
Matlab Problem:

Write a function called PrimeFinder that receives an integer as an input argument, and provides an output argument called Primes that is a vector containing all prime numbers between 2 and n nclusive. Verify the correctess of your code with inserting 13 as the input argument, and check that your output is Primes = [2, 3, 5, 7, 11, 13]. You are NOT allowed to use auy directly selevaut MATLAB built-in fuactiou such as divisoxs, ete NOTE: A prime number is a number that is only divisible by 1 and itsel HINT: Your function should go through a ntegers between 2 and n, one by one, and check if that number is divisible by any number other than or itself. If the number turned out to be a prime number, it should be appended to the end of the output argument vector before moving on to the next mumber
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
