Sum of a signal in simulink

조회 수: 49 (최근 30일)
Sam136
Sam136 2015년 8월 4일
편집: Yeow Yu Leong 2024년 6월 9일
In my Simulink model, current value of a signal should be added to all previous value of the same signal. I've used integrator with initial value of zero to find it; however the result is different from what I find in Matlab through "sum" or "trapz" function. The solver is continuous with fixed step size. Any thought to resolve this issue. or any other block to use for this purpose instead of integrator?

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2015년 8월 4일
편집: Azzi Abdelmalek 2015년 8월 4일
You can use a Matlab function block with this code
function y=fcn(u)
persistent a
if isempty(a)
a=0
end
y=u+a;
a=y;
You can also use a discrete transfer function 1/(z-1)
  댓글 수: 1
Yeow Yu Leong
Yeow Yu Leong 2024년 6월 9일
편집: Yeow Yu Leong 2024년 6월 9일
or use an accumulator

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Sean de Wolski
Sean de Wolski 2015년 8월 4일
You could also use a unit delay:
  댓글 수: 1
Azzi Abdelmalek
Azzi Abdelmalek 2015년 8월 4일
He is asking for all previous values. This will calculate out(n)+out(n-1)

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 General Applications에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by