Clear Filters
Clear Filters

Write a function max_product that takes v a vector and n, a positive integer, as inputs and computes the largest product of n consecutive elements of v. It returns the product and the index of the element of v that is the first term of the product.

1 view (last 30 days)
I can't seem to solve this. Anyone have any idea please?
  2 Comments
the cyclist
the cyclist on 31 Aug 2017
People here are willing to help with homework, but you have to show an effort first. What have you tried? What are your ideas? Where are you stuck?
champions2015
champions2015 on 1 Sep 2017
Edited: the cyclist on 1 Sep 2017
function [product,ind]=max_product(v,n)
position=0;
mult=[];
if length(v)<n
product=0;
ind=-1;
end
for i=1:length(v)
while (length(v)-i+1)>=n
position=position+1;
j=i:(i+n-1)
M=v(j);
mult(position)=prod(M);
end
end
product=max(mult);
end
This is what I have got so far but i seem to be getting an error for M=v(j) each time (Matlab simply states it's invalid), as well as a simple output of 'j=1 2 3' which continues running non-stop. I have tried pre-allocating by creating 'N=zeros(size(v))'; however, this does not change anything.
Thanks in advance.

Sign in to comment.

Accepted Answer

John D'Errico
John D'Errico on 1 Sep 2017
Edited: John D'Errico on 1 Sep 2017
Ok. You made an effort. It is even a credible one. Not bad at all.
Some good things I see. You did not use prod as a variable name. You tested to see if n was too large, compared to the length of v. You used max to find the maximum product, so a "vectorized" tool there.
So, what did you do wrong? I'd suggest there is no need to put a while loop INSIDE the for loop. Just make the for loop stop at the right point. The while loop is what is screwing you up here.
Next, there is no need to create a counter called position! You already have that in the variable i.
You do need to preallocate mult. If not, your code will get really slow on some problems. So maybe this:
mult = zeros(1 , length(v) - n + 1);
Finally, you can get ind (the location of the max) from the max function too.
I won't completely re-write your code, because then it is my code, and you are close enough that you can solve the problem yourself. Drop the while loop. Set up your for loop like this:
for position=1:(length(v) - n + 1)
As you can see, I let the for loop increment position, so there is no need to use i as a loop variable.
Then use two output arguments from max at the end.
[product,ind] = max(mult);

More Answers (1)

Wu Hanting
Wu Hanting on 25 Oct 2018
Besides, I think u are supposed to delete the ";" behind the "product = 0" and "ind = -1", or when testing condition of length(v)<n, there won't be any result.

Categories

Find more on Programming in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!