代码搜索结果
找到约 582,192 项符合
Cortex-M 的代码
exta.m
function E =extA(A, c)
%------------------------------------------------------------------------------
%
% Design and implementation by:
% Dr. Paul M. de Zeeuw http://homepages
extl.m
function E = extL(A, c)
%------------------------------------------------------------------------------
%
% Design and implementation by:
% Dr. Paul M. de Zeeuw http://homepage
getcolor11.m
function C = getcolor11(A)
%------------------------------------------------------------------------------
%
% Design and implementation by:
% Dr. Paul M. de Zeeuw http://homep
hybrid_mc.m
% Hybrid MC demo niter=10;
function hybrid_mc(niter);
C=[1 0.98; 0.98 1];
Ci=inv(C);
m=[0 0];
clf;
x=[-1 1];
px=exp(-(x-m)*Ci*(x-m)'/2);
plot_gaussian(sqrt(2)*C,m,2,60);
ax
fftseq.m
function [M,m,df]=fftseq(m,ts,df)
% [M,m,df]=fftseq(m,ts,df)
% [M,m,df]=fftseq(m,ts)
%FFTSEQ generates M, the FFT of the sequence m.
% The sequence is zero padded to meet th
pehypb2lf.m
function u = pe2LF(a,b,dt,nx,minx,maxx,ny,miny,maxy,M)
%啦-佛
format long;
hx = (maxx-minx)/(nx-1);
hy = (maxy-miny)/(ny-1);
for i=1:nx+2*M
for j=1:(ny+2*M)
u0(i,j) = Ini2U(minx+(i-M-
mpgread.m
%MPGREAD Read an MPEG encoded movie file.
% [M, map] = mpgread('filename', frames) reads the specifed
% MPEG file and translates it into the movie M, and colormap map.
% If a vector frames is specifi
make_deinterleave_m.m
% MAKE-DEINTERLEAVE-M:
% As the name indicates, this tiny matlab script does construction
% of the deinterleave.m-function.
%
% SYNTAX: make_deinterleave_m
%
% INPUT: None.
%
ex051800.m
% Chapter 05: Example-5.18: Overlap and save
%
n = 0:9;
x = n+1; Lenx = length(x);
h = [1,0,-1]; M = 3; M1 = M-1; L = N-M1;
N = 6; h = [h zeros(1,N-M)];
%
x = [zeros(1,M1), x, zeros(1,N-1)];
K
blackman.m
function w_black = Blackman(M);
% M-point Blackman window
% -----------------------
% w_black = Blackman(M);
%
M1 = M-1;
m = [0:1:M1];
w_black = abs(0.42 - 0.5*cos(2*pi*m'/(M1)) + 0.08*cos(4*