I am unable to display the summation value?
2 ビュー (過去 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!