alternative options to prod

조회 수: 6 (최근 30일)
yonatan friedman
yonatan friedman 2019년 12월 14일
댓글: yonatan friedman 2019년 12월 14일
input = [8 10 9 9 1
8 3 2 4 4
10 4 6 2 7
7 1 6 4 1]
output is = [4480 120 648 288 28]
and I can not use prod

채택된 답변

David Hill
David Hill 2019년 12월 14일
output=ones(1,size(input,2));
for j=1:size(input,1)
output=input(j,:).*output;
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by