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.

TMS320F28377D: CPU2.CLA1中math.h 文件中atan和sin等三角函数使用问题

Part Number: TMS320F28377D

我想测试一下CLA中三角函数的计算时间,已经用CALatan等函数测试过了,但是在使用sin和atan等math.h中的函数时cla程序在sin函数处停止运行了(i值为0)。

测试程序为:

for(i=0;(float)i < (float)1000;i++)
{
a = sin(1);
// __mdebugstop();
}