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

6 visualizaciones (últimos 30 días)
  1 comentario
ED
ED el 18 de Sept. de 2024
Editada: ED el 18 de Sept. de 2024
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?

Iniciar sesión para comentar.

Respuesta aceptada

Epsilon
Epsilon el 18 de Sept. de 2024
Editada: Epsilon el 18 de Sept. de 2024
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 comentario
ED
ED el 19 de Sept. de 2024
thank you!
I just replaced 0.0 with single(0.0) when keeping dialog one and the result is adopting the single as well.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by