Automaticlly converting negative values to 0

Hey. This is my code.
Ex_UpperBar * Ey_UpperBar * image(x_LowerBar,y_LowerBar)
Ex_UpperBar * Ey_UpperBar
ans =
-1
image(x_LowerBar,y_LowerBar)
ans =
uint8
89
but it is giving the Answer:
Ex_UpperBar*Ey_UpperBar*image(x_LowerBar,y_LowerBar)
ans =
uint8
0
It is supposed to return -89. How do i fix it? Thanks

 采纳的回答

Use a command int8() or int16() to store your processed data that resolves your task. e.g.: a= -89; b=int8(a)

更多回答(2 个)

uint8 cannot store -89 and thus, 0
Thus, store your data in int8 or better int16.
Store you data in int8 or int16

2 个评论

it is in uint8 @Sulaymon Eshkabilov
int16(Ex_UpperBar)*int16(Ey_UpperBar)*int16(image(x_LowerBar,y_LowerBar))

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by