I am unable to display the summation value?
조회 수: 1 (최근 30일)
이전 댓글 표시
while executing the code, I am unable to see the final result. D-array;
K- 0 to N=10;
syms k;
Summ=symsum(D,k,0,N);
댓글 수: 0
답변 (1개)
Image Analyst
2017년 5월 7일
편집: Image Analyst
2017년 5월 7일
What is D? How about
Summ = sum(D(1:N+1));
What does this have to do with image processing or computer vision?
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!