6

I know its a very basic question. But still, I am struggling to convert Binary to Integer and vice-versa in Simulink.

I could use a function block and use inbuilt Matlab functions to do it. But I, intend to use the Simulink blocks to convert Binary to decimal number.

Please suggest me how to do it or any pointers in the internet would be helpful.

Kiran
  • 8,034
  • 36
  • 110
  • 176
  • What's your goal ? Value are in decimal base into Simulink but you have block such as `Extract bit` to use bits. Generally, you better have to think about bits than base within Simulnk. Let the visual representation outside in Matlab (or in `Display` blocs set to "binary") – Clement J. Mar 09 '11 at 10:30

2 Answers2

3

You can use a Conversion block to convert back and forth between binary (i.e. boolean) types and various integer (int8, uint8, int16, etc.) or floating point (single or double) types.

gnovice
  • 125,304
  • 15
  • 256
  • 359
2

I think this is what you're looking for:

How do I visualize the fixed-point data in binary or hex format using Simulink?

Rasman
  • 5,349
  • 1
  • 25
  • 38