代码搜索:M

找到约 10,000 项符合「M」的源代码

代码结果 10,000
www.eeworm.com/read/453583/7416705

li$ m03-m.li$

www.eeworm.com/read/453583/7416710

li$ m01-m.li$

www.eeworm.com/read/449180/7517271

m legend11_m.m

% legend11 - Median Filter clear;clc; x=imread('Fig3.37(a).jpg'); [a b]=size(x); for k=1:100; r=input('filter size : ') % median program rxr t=padarray(x,[(r-1)/2 (r-1)/2],0,'both'); t=double(
www.eeworm.com/read/448350/7534432

m m2htmlpwd.m

%M2HTMLPWD - create html documentation of files in current directory % % M2HTML must be on the matlab path % available from http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=
www.eeworm.com/read/448259/7535753

m freqz_m2.m

function[db,mag,pha,w]=freqz_m2(b,a) % 滤波器幅值响应(绝对、相对)、相位响应 % db: 相对幅值响应; % mag: 绝对幅值响应; % pha: 相位响应; % w: 采样频率; % b: 系统函数H(z)的分子项(对FIR,b=h) % a: 系统函数H(z)的分母项(对FIR,a=1) [H,w]=freqz(b,a,1000,'
www.eeworm.com/read/446736/7567336

m times10_m.m

function [sys,x0,str,ts] = times10_m(t,x,u,flag) %TIMES10_m S-function whose output is ten times its input. % This M-file illustrates how to construct an M-file S-function that % computes an ou
www.eeworm.com/read/446736/7569505

m times10_m.m

function [sys,x0,str,ts] = times10_m(t,x,u,flag) %TIMES10_m S-function whose output is ten times its input. % This M-file illustrates how to construct an M-file S-function that % computes an ou
www.eeworm.com/read/445391/7595884

m m2att.m

function att=m2att(Cnb) att = [ asin(Cnb(3,2)); atan2(-Cnb(3,1),Cnb(3,3)); atan2(-Cnb(1,2),Cnb(2,2)) ];
www.eeworm.com/read/445391/7595888

m m2qnb.m

function qnb = m2qnb(Cnb) qnb = [ sqrt(abs(1.0 + Cnb(1,1) + Cnb(2,2) + Cnb(3,3)))/2.0; sign(Cnb(3,2)-Cnb(2,3)) * sqrt(abs(1.0 + Cnb(1,1) - Cnb(2,2) - Cnb(3,3)))/2.0
www.eeworm.com/read/445073/7599706

m peellip5m.m

function u = peEllip5m(nx,minx,maxx,ny,miny,maxy) format long; hx = (maxx-minx)/(nx-1); hy = (maxy-miny)/(ny-1); u0 = zeros(nx,ny); for j=1:ny u0(j,1) = EllIni2Uxl(minx,miny+(j-1)*hy);