我正在处理信号处理部分。 我想使用Java开发fm发送器(仅限fm调制)(因为我一直使用Java录制和播放音频数据)。我想调制这些数据。我尝试了一些功能,但它的工作原理如下:
for(int t=0;t<=1000000;t++){
int fc=1000000;
int fm=10000;
double pi= 3.14;
double b=2*Math.cos(2*pi*fm*t);
double y=Math.sin(2*pi*fc*t+(b));///fm modulation equation
// System.out.println(y);
// array[t] = y;
//
}