Summation of an array
조회 수: 2 (최근 30일)
이전 댓글 표시
How can i code this in matlab?
댓글 수: 0
채택된 답변
JESUS DAVID ARIZA ROYETH
2020년 2월 5일
if length(P) and length(Y) is N:
x=sum(P.*Y)
in another case:
N=5; %set any value for N
x=sum(P(1:N).*Y(1:N))
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!