block outputs very small number

2 vues (au cours des 30 derniers jours)
Brasco , D.
Brasco , D. le 2 Mai 2018
Why am I getting a very small number by summing two zeros? (shown below )
Is there any way to prevent this ?

Réponses (1)

Jingfang Qu
Jingfang Qu le 22 Juin 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.

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by