代码搜索结果
找到约 582,192 项符合
Cortex-M 的代码
maichong.m
function y=maichong(m,n,N)
y=[ones(1,n),zeros(1,m-n)]
for i=1:N-1;
y=[y,y]
end
circonv.m
function y = circonv(x1,x2,N)
%求序列的循环卷积,方法y(n) = sum(x1(m)*x2(mod((n-m),N)+1))
%检查x1,x2的长度的语句略
x1 = [x1,zeros(1,N-length(x1))];
x2 = [x2,zeros(1,N-length(x2))];
m = [0:N-1];
x2m = x2(mod(-m,N)+1
newton.m
function X=Newton(X0,tol,nmax,varargin)%输入初值X=X0+1,误差tol,和最大迭代次数,X0为行向量格式。
X=X0'+1;% 可以编辑F.m和J.m文件来输入方程组和对应的雅克比矩阵。
niter=0;
while ((X(1)-X0(1)) >= tol || (X(2)-X0(2))
filtre_lms.m
%%%%FILTRE LMS:
M=5; %%%%%%%%%%DIMENTION DU FILTRE%%%%%%%%%%
Y=0.2; %%%%%%%%%%PAS D'ADAPTATION%%%%%%%%%%%%%
W_LMS=zeros(1,M); %%%%%%%%%%POIDS DU FI
q.m
% File: q.m
% Software given here is to accompany the textbook: W.H. Tranter,
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of
% Communication Systems Simulation with Wireless App
q.m
% File: q.m
% Software given here is to accompany the textbook: W.H. Tranter,
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of
% Communication Systems Simulation with Wireless App
q.m
% File: q.m
% Software given here is to accompany the textbook: W.H. Tranter,
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of
% Communication Systems Simulation with Wireless App
q.m
% File: q.m
% Software given here is to accompany the textbook: W.H. Tranter,
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of
% Communication Systems Simulation with Wireless App
repl.m
%Creates an output image which is the input image with reflection about the
%borders for ct pixels
function out = repl(in, ct)
out = zeros(size(in,1)+2*ct, size(in,2)+2*ct);
M = size(out,1);
N
rx_est.m
function [Rx]=Rx_est(X,M)
% [Rx]=Rx_est(X,M)
% RX_EST estimates the autocorrelation of the sequence of random
% variables given in X. Only Rx(0), Rx(1), ... , Rx(M) are computed.