Connecting 2 signals in Simulink gives an error about data type
1 回表示 (過去 30 日間)
古いコメントを表示
I'm trying to show on scope 2 signals - one is bit stream and the other one is the result of multiplication. Occured error is visible in attach.
Without scope3 plugged my model works properly and gives expected results.
Can you halp with that?
0 件のコメント
回答 (1 件)
Guru Mohanty
2020 年 5 月 14 日
Hi, error in the model is due to the Product block. Its two inputs are of datatype 'int8' and 'double' and the output is of type 'double', but the wire expects a signal of type 'int8'.This causes an error. In this scenario, you can use Datatype Conversion Block or you can set the Output datatype of the product block.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!