フィルターのクリア

How can I add the elements ascending in this code

1 回表示 (過去 30 日間)
almohanned alsufyani
almohanned alsufyani 2023 年 3 月 15 日
編集済み: Voss 2023 年 3 月 15 日
Mf=6.480554950317725e+03;
y=0.005338551179592;
D0=Mf*y; % Product of 1st stage
D(1)=D0;
M=Mf;
for c=2:15 % Product profile
D(c)=y*M*(1-y)^(c-1);
end
____
By the previous code the product of D will be a matrix of size 1*15 (1x15 double)
Now I want to apply the following equation, which is based on a cumulative summation of the values of D :
B1=Mf-D1
B2=Mf-(D1+D2)
B3=Mf-(D1+D2+D3)
B4=MF-(.....)
Up to B15

回答 (1 件)

Voss
Voss 2023 年 3 月 15 日
B = Mf-cumsum(D);

カテゴリ

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

タグ

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by