Question: please use MATLAB codes to answer this question Write a function prodofk that will receive two positive integers n and k and will calculate and




please use MATLAB codes to answer this question
Write a function prodofk that will receive two positive integers n and k and will calculate and return the product of the first k odd integers from 1 to n. Use a loop. If the value of n does not allow for k odd integers, then the function should return the value 0. sprodofk(11, 3) ans - 15 ssprodofk(11, 11) ans = For example: Test assert(prodofk(25, 5) 945) assert (prodofk(7,2) 3) Result assert (prodofk(7,5) = 0) assert (prodofk(8,5)0) Answer: (penalty regime: 0 %) 1 Function value prodofk(n,k) 3 m-1; 4 value-1; 5 | while m
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
