现在有以下几个问题:
1、2808定义的数据类型有float型,是不是说定义一个数据为float型,进行除法那么这个数据是以浮点的格式存储的,
例如:
float temp;
Uint16 temp1;
temp = temp1/10;
这个temp变量是不是以浮点格式存储?
2、格式是否是IEEE-754格式
3、如果以上不能,我该怎么把定点数据转为浮点数据
谢谢!
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
现在有以下几个问题:
1、2808定义的数据类型有float型,是不是说定义一个数据为float型,进行除法那么这个数据是以浮点的格式存储的,
例如:
float temp;
Uint16 temp1;
temp = temp1/10;
这个temp变量是不是以浮点格式存储?
2、格式是否是IEEE-754格式
3、如果以上不能,我该怎么把定点数据转为浮点数据
谢谢!