New Reply

Definite product in matlab

 
Share Thread Thread Tools
Mar19-12, 03:14 PM   #1
 

Definite product in matlab


Can someone tell me how to do the following in matlab (R2010a):

f(1)*f(2)*...*f(n)

thanx in advance.
 
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Heat-related deaths in Manhattan projected to rise
>> Dire outlook despite global warming 'pause': study
>> Sea level influenced tropical climate during the last ice age
Mar20-12, 01:39 PM   #2
 
Recognitions:
Science Advisor Science Advisor
I assume that you have already defined the contents of the vector f of length n.
Then
p = prod(f);
 
Mar21-12, 01:34 PM   #3
 
Hi, marcusl

I have a 4d matrix M, with size: a * b * c * n
This is exactly what I want: M(:,:,:,1).*M(:,:,:,2).*....*M(:,:,:,n) (this is element wise multiplication of the elements)

Please help.
 
Mar21-12, 02:05 PM   #4
 
Recognitions:
Science Advisor Science Advisor

Definite product in matlab


Read Matlab's Help entry, which tells you exactly how to take the product over a desired dimension (index). I will help you if you're stuck, but I will not do all your work for you.
 
New Reply
Thread Tools


Similar Threads for: Definite product in matlab
Thread Forum Replies
integration of a product of legendre polynomials in matlab Math & Science Software 1
triple scalar product: matlab Math & Science Software 5
Eigenvalues of Positive Definite matrices - &MATLAB.. Math & Science Software 3
Using Matlab to find the cross product of variables? Math & Science Software 1
Definite product of zero and infinity? General Math 35