对于我的问题,我需要通过等式1/(1+25x^2(迭代数字1到n,我当前的代码是
for i = 1:n
result = 1/(1+25*i^2);
end
但这只是输出一个数字,我想把数字保存到一个数组中,这样我就可以绘制
您可以将其写为
result = 1./(1+25*(1:n).^2);
或在具有索引的CCD_ 1循环中
result = zeros(1,n);
for j = 1:n
result(j) = 1/(1+25*j^2);
end