Use MATLAB.
1834639/take Instruction: NOTE: There are two problems this week, so please pace yourself. Create a script file to solve this problem. Use meaningful variable names for each variable; do not use the default variable ans to store your results. Suppress your output for every calculation or allocation. Please remember to follow the programming style sheet on Canvas. When complete, please submit your code to the dropbox on Canvas; the grader will run it to view your output. Name your file like this: Your submission must be a .m file, for example: usornamoassessmont6_probicmi.m (example: bjs5332_aspessme). Prompt: Using for loop, sum all the prime numbers from 100 to 200. To do this, recall that the isprime command tests if a number is prime. Every time you find a prime number, add it to your sum and use print commands to print statements to the Command Window like this: k = 101 meets the search criteria, k = 103 meets the search criteria. Once you have finished iterating through the loop, print the mean of all of the values that met your search criteria. To accomplish this, you will need both a counter for the running total and a counter for the number of elements that have met the search criteria. The running sum will add up all the prime numbers and the counter will increase by one every time you find a prime number. Hint: A total of 21 elements will meet your search criteria, yielding a mean of 150.8095.