Question: Matlab Code: Write a function prodofk that will receive two positive integers n and k and will calculate and return the product of the first
Matlab Code:
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 kodd integers, than the function should return the value 0.
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, than the function should return the value 0. prodofk(11, 3) ans = 15 prodofk(11, 11) ans = 0 For example: Test assert(prodofk(25, 5) = assert(prodofk(7,2) = 3) assert(prodofk(7,5) 0) assert ( p rodofk(8,5) = 0) Result 945)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
