which one is the correct procedure for summation

1 次查看(过去 30 天)
I want to implement the following equation
Kindly tell me,which method is correct
ID =0;
for i=1:256
ID = ID+HD(i);
end
or otherwise
ID = sum(HD(1:256))
Please help me

采纳的回答

Walter Roberson
Walter Roberson 2017-2-13
ID = sum(HD(1:256)) is faster.
If you were summing large enough arrays then there could be difference in the output due to round off differences when the large summation was handed over to fast routines that use multiple threads to create partial sums that are then added together.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Mathematics 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by