In the following equation do i perform the sum first or the power of 2 first?
(sum(k.*cos(b)).^2)

 Accepted Answer

Roger Stafford
Roger Stafford on 27 Feb 2015
Edited: Roger Stafford on 27 Feb 2015

1 vote

As it stands, the summation occurs first, followed by taking the square of that sum. You should be able to determine that from the parentheses.
In case 'b' is more than a one-dimensional array, there will of course be many sums and the square of each one is taken.

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!