How to create a matrix that contains members with specific different between each element ?

1 回表示 (過去 30 日間)
if I have matrix A that contains a distance between element n and n+1 :
A = [4 7 15]
How can I construct Matrix B that shows a result as
B = [1 5 12 27]

採用された回答

per isakson
per isakson 2018 年 1 月 13 日
Starter:
>> cumsum([1,A])
ans =
1 5 12 27

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeElementary Math についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by