rcos50.m
来自「Least Mean Square Newton Algorithm」· M 代码 · 共 12 行
M
12 行
function h=rcos50(t);
%
% This function gives samples of a raised cosine
% pulse shape with a rolloff factor of 50%.
%
% The sampling times are specified by the elements
% of the vector "t".
%
t=t+eps;
h=(sin(pi*t)./(pi*t)).*(cos(pi*t/2)./(1-t.^2));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?