Info

此问题已关闭。 请重新打开它进行编辑或回答。

Adding the arrays number

1 次查看(过去 30 天)
Offroad Jeep
Offroad Jeep 2015-10-3
关闭: MATLAB Answer Bot 2021-8-20
Hi to all, I have generated random numbers
a = 0
da = rand(1,10)
now i want to add a+da so that the previous result add to next rand no. for example
a = 0
da = 1 2 3 4
a_new = 0+1 = 1
in the next step
a_new = 1+2 =3
in the next step
a_new = 3+3 = 6
in the next step
a_new = 6+4 =10
etc

回答(1 个)

Walter Roberson
Walter Roberson 2015-10-3
t = [a da];
t(1:end-1) + t(2:end)
  2 个评论
Offroad Jeep
Offroad Jeep 2015-10-3
编辑:Offroad Jeep 2015-10-3
kindly see the question ..... your answer is not working......... kindly check it thanks...........

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by