add up a signal for every timestep
1 回表示 (過去 30 日間)
古いコメントを表示
hello i've got an embedded matlab function in my model, which creates an output signal(wastage of fuel). Now i want to add up this signal for every timestep, so that i obtaine the total wastage after the simulation. Is there a way? Hope that was understandable ;)
2 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 3 月 16 日
編集済み: Azzi Abdelmalek
2013 年 3 月 16 日
Ok, you want a cumulative sum:
In your embedded function add these codes
at the beginning
function [☺utput,cum_output]=fcn(....)
persistent cum_output
if isempty(cum_output)
cum_output=0
end
and at the end of your code
cum_output=cum_output+output
11 件のコメント
Azzi Abdelmalek
2013 年 3 月 17 日
st, I can't answer this question, because you did not provide enough information. What is sure is the code I added allows you to do cumulative sum.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で String についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!