How to write cumulative product function
    5 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Life is Wonderful
 el 15 de Mzo. de 2022
  
    
    
    
    
    Comentada: Life is Wonderful
 el 16 de Mzo. de 2022
            Hi 
I am trying to  implement cumproduct without using built-in function. Below is  my test code . I need help  to implement "My Test code " like built-in cumprod([1 1 2 : 5]).
Thank you!!
% Built-in 
A = cumprod([1 1 2 : 5])
%      A 
%------+
%      1
%      1
%      2
%      6
%     24
%    120
% My Test code , 
A1 = 1;
for i = 1 :5
        A1 = A1 * i;
        fprintf('%10d|%10d|\n',i,A1);
end
    A1
-----+    
    1|
    2|
    6|
   24|
  120|
2 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
				Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


