필터 지우기
필터 지우기

How can a saturation block emulate the option "Saturate on integer overflow" of a block?

조회 수: 4 (최근 30일)
Hi,
In my models I cannot use the option "Saturate on integer overflow" due to incompatibility with MISRA rules. I need to use a saturation block instead and I was wondering which are the correct values of upper and lower limits in order to obtain the same behaviour as if I had the option checked.
Thanks in advance, Patricia

채택된 답변

Owen McAree
Owen McAree 2014년 3월 25일
Hi Patricia,
You can use the MATLAB functions intmin and intmax to get the saturation values. For example
>> intmin('int16')
ans =
-32768
>> intmax('int16')
ans =
32767
I hope this helps!
Owen

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by