How to write cumulative product function
    조회 수: 5 (최근 30일)
  
       이전 댓글 표시
    
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|
채택된 답변
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


