block outputs very small number
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Why am I getting a very small number by summing two zeros? (shown below )
Is there any way to prevent this ?
0 comentarios
Respuestas (1)
Jingfang Qu
el 22 de Jun. de 2018
Hi,
The output signal of the Add block is not usual. The machine epsilon for double precision decimal is 1E-16; however the result here is much less than that. The possible reason here is the signal datatype of the Add block is set to be fixed point.
Please refer to the following link for more information about fixed point:
If you want to get rid of such result, you can set the datatype to be double:
1. Double click on the block, Signal Attributes->Output data type.
2. In the drop down list, choose double.
3. Click Apply , then click OK.
To make sure the datatype is set as expected, you can view the signal datatype by the following:
Display->Signals and Ports->Port Data Types.
0 comentarios
Ver también
Categorías
Más información sobre Sources en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!