代码搜索结果

找到约 582,192 项符合 Cortex-M 的代码

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-

myttest.m

% myTest: my first test M-file. % Roger Jang, March 3, 1997 fprintf('Start of myTest.m!\n'); for i = 1:3 fprintf('i = %d ---> i^3 = %d\n', i, i^3); end fprintf('End of myTest.m!\n');

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*

cirshftt.m

function y = cirshftt(x,m,N) % Circular shift of m samples wrt size N in sequence x: (time domain) % ------------------------------------------------------------------- % [y] = cirshftt(x,m,N) % y

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

recfilter.m

function y=recfilter(alpha,x) T=1; N=31; n=-(N-1)/2:(N-1)/2; for i=1:length(n), g_t(i)=0; for m=-(N-1)/2:(N-1)/2, g_t(i)=g_t(i)+sqrt(xrc(4*m/(N*T),alpha,T))*exp(j*2*pi*m*n(i)/N)