vector
显示 更早的评论
Write and test the code for the function mysteryFunction that consumes a vector, V, and produces a new vector, W, of the same length where each element of W is the sum of the corresponding element in V and the previous element of V. Consider the previous element of V(1) to be 0. For example, mysteryFunction(1:8) should return [1 3 5 7 9 11 13 15] and mysteryFunction([1: 6].^ 2) should return [1 5 13 25 41 61]
Can someone guide me as to how to approach this
回答(2 个)
Walter Roberson
2012-4-25
mysterFunction = @(V) something
As you need to produce sums, chances are that "something" involves at least one addition (though not necessarily the "+" operator)
Andrei Bobrov
2012-4-25
mysteryFunction = @(x)conv([0 x(:)'],[1 1],'valid')
类别
在 帮助中心 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!