I am unable to display the summation value?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Image Analyst
il 7 Mag 2017
Modificato: Image Analyst
il 7 Mag 2017
What is D? How about
Summ = sum(D(1:N+1));
What does this have to do with image processing or computer vision?
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!