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. double __divf32( double num , double denom );
与上述指令一样、是否需要转换参数 num 和 denom? 假设 num 和 denom 都是 long 类型或其他非 double 类型、那么在调用指令时指令是否会自动将参数类型转换为 double?
是否可以像以下方式使用它?
_divf32 ((long) num、(long) denom)
_divf32 ((float) num、(long) denom)
2.SRC 在 double _sin( double src )中的范围是什么? 它是0~2PI 吗?
3.在 double __sincuf32( double src )中 SRC 的范围是什么? 它是0~2、不包含 PI 或其他东西吗?
安卡,我已经不在办公室,我将在今天晚些时候回复这篇帖子。
1.可以,编译器会在没有显式执行的情况下执行此操作。
2.我认为它甚至不需要在0-2PI。 它可以是任意值、并且将被视为弧度值。
3.每单位弧度值,因此输入应在0到1的范围内。
谢谢。
Sira