我很惊讶为什么下面的代码不起作用
function [ x ] = generate2(N,m,A3)
f1 = 100;
f2 = 200;
T = 1./f1;
t = (0:(N*T/m):(N*T))'; %'
q=randn(500,1);
wn = randn(length(t),1); %zero mean variance 1
x = 20.*sin(2.*pi.*f1.*t+q) + 30.*cos(2.*pi.*f2.*t+q) + A3.*wn;
%[pks,locs] = findpeaks(x);
plot(x);
end
当我运行以下命令时
>> sample1=generate2(3,500,1);
它给了我以下错误
Undefined function 'generate2' for input arguments of type 'double'.
我不明白什么是问题?
我已经解决了,但现在有另一个问题
使用 +
矩阵尺寸的错误必须一致。
generate2 错误(第 8 行)x = 20.*sin(2.*pi.*f1.*t+q) + 30.*cos(2.*pi.*f2.*t+q) + A3.* wn;