How to do sum of array having decimal value?
3 次查看(过去 30 天)
显示 更早的评论
For example: I have an array h = [ 0.2 0.54 0.75 1.33]; and I want to sum of the array h from second value to the end. sum(h(2:end);
But this will give an error Subscript indices must either be real positive integers or
logicals
Help me how to address or remove this error.
Thanks
0 个评论
回答(1 个)
madhan ravi
2020-10-3
编辑:madhan ravi
2020-10-3
clear sum
h = [ 0.2 0.54 0.75 1.33 ];
sum(h(2 : end))
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!