why does the module of delay have different data types of input and output?

조회 수: 2 (최근 30일)
ED
ED 2024년 9월 18일
댓글: ED 2024년 9월 19일
  댓글 수: 1
ED
ED 2024년 9월 18일
편집: ED 2024년 9월 18일
But I disable function of reset, it changes into:
Just overlook the different appearance of the delay with and without reset input.
Hasn't this case ever been found by anyone?

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

채택된 답변

Epsilon
Epsilon 2024년 9월 18일
편집: Epsilon 2024년 9월 18일
Hi ED,
I tried reproducing this and it seems the unit delay block does indeed produce a 'double' data type signal when used with an external reset. This might be happening due to the initial condition (0.0) being of a ‘double’ datatype in case of the block with external reset. In case where no reset is being used it must be using the definition with the initial value (0) as ‘single’ datatype. The initial conditions change the datatypes for the next iterations. (Note: 0.0 & 0 are just the mentioned values in the parameter dialogue fields and does not represent the datatype of the values)
To get the signal as a 'single' datatype while using an external reset consider using a 'single' datatype value as an initial condition. To do so, directly enter a 'single' datatype value in the initial condition field in the Delay One Step’ block parameters dialogue. Or change the initial condition source from ‘Input’ to ‘Input port’ then attach a 'single' datatype constant to it.
Attaching the resultant image with the implementation.
Hope this helps!
  댓글 수: 1
ED
ED 2024년 9월 19일
thank you!
I just replaced 0.0 with single(0.0) when keeping dialog one and the result is adopting the single as well.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by