请问随机信号处理,MA过程

对于MA(2)过程:
𝑥(𝑛)=𝜔(𝑛)−1.7𝜔(𝑛−1)+0.72𝜔(𝑛−2)
求出另外三个不同的MA(2)过程,使它们具有相同的功率谱。

img

请问如何求其他三个ma过程,感谢

创建MA2_simulate.m
文件编辑内容为:
function [y]=MA2_simulate(u,theta_1,theta_2,T)
epsilon = randn(T+2,1);
y = u * ones(T,1);
y = y + epsilon(3:T+2) + theta_1 * epsilon(2:T+1) + theta_2 * epsilon(1:T);