我如何将这些方程式转换为C代码?

时间:2016-10-25 18:44:25

标签: c trigonometry

我有这两个方程式

enter image description here enter image description here

我需要将它们转换为输入kx的C代码。问题是我没有达到高级数学水平,我也没有学过C:D

任何人都可以逐步向我展示内置函数可以用于此以及应用程序背后的逻辑应该如何运作?

干杯!

3 个答案:

答案 0 :(得分:2)

你的公式错了。如图所示here(以及推导的证明)正确的公式是

enter image description here

您的总和已交换#animate-demo { text-align: center; margin: 0 auto; width: 99%; color: #0972a5; font-size: 48px; transition: 1s; } .pulsate-up { transform: scale3d(1.5, 1.5, 1.5); } k。输入应为nx。那么正确的代码就是:

n

答案 1 :(得分:0)

您可以包含文件math.h,它具有内置函数,如cos()和sin()。 例如:

#include <stdio.h>
#include <math.h>
int main ()
{
    double res;
    ret = cos(45);
    printf("The cos of angle 45 is %f",res);
    return 0;
 }

希望有所帮助......

答案 2 :(得分:0)

你有一个由两个公式组成的方程式。这两个部分很容易编写,但很难找到解决方案。第一个公式的右边部分是:

float RHvalue;
RHvalue = (sin( ((n+1.0)*x) / 2.0 ) * sin(n * x/2.0) ) / sin(x/2.0);

现在,kx的值是什么,是另一回事,尽管很容易将它们相加。