代码搜索:M
找到约 10,000 项符合「M」的源代码
代码结果 10,000
www.eeworm.com/read/477921/6726189
m m_exam10.m
% example 10
x=linspace(0,2*pi,30);
y=sin(x);
z=cos(x);
plot(x,y,x,z);
grid
xlabel('Independent variable x');
ylabel('Independent variable y and z');
title('sine and cosine curves');
axis([0
www.eeworm.com/read/477921/6726192
m m_exam8.m
% example 8
x=linspace(0,2*pi,30);
y=sin(x);
z=cos(x);
plot(x,y,'g:',x,z,'r-',x,y,'bo',x,z,'r+')
www.eeworm.com/read/477233/6740423
m test butter.m.m
%-----------------------------------------------------------------------------
% exa060701_3.m , for example 6.7.1 and 6.5.1
% to test butter.m
%---------------------------------------------------
www.eeworm.com/read/263805/11341416
m nnd12m.m
function nnd12m(cmd,arg1)
%NND12M Marquardt backpropagation demonstration.
%
% This demonstration requires the Neural Network Toolbox.
% First Version, 8-31-95.
%=============================
www.eeworm.com/read/263036/11378713
m51 sp_m.m51
BL51 BANKED LINKER/LOCATER V5.03 04/17/2005 22:55:11 PAGE 1
BL51 BANKED LINKER/LOCATER V5.03, INVOKED BY:
D:\PROGRAM FILES\KEIL20\C51\BIN
www.eeworm.com/read/262641/11397498
exe m2m.exe
www.eeworm.com/read/407554/11416005
m m_seq127.m
function [m_seq] = m_seq127(c_poly)
%产生周期为127=(2^7-1)的m序列
%指定的本原多项式:c_poly
%默认本原多项式:f(x)=313=[1 0 1 0 0 1 1]
%===============================================
%设置本原多项式
if exist('c_poly')==0,
www.eeworm.com/read/406594/11439345
m nnd12m.m
function nnd12m(cmd,arg1)
%NND12M Marquardt backpropagation demonstration.
%
% This demonstration requires the Neural Network Toolbox.
% First Version, 8-31-95.
%=============================
www.eeworm.com/read/402603/11532129
m m2low.m
clf;
[z,p,k]=cheb2ap(8,25)
[b,a]=zp2tf(z,p,k)
[h,w]=freqs(b,a,n)
magh2=(abs(h)).^2
plot(w,(magh2))
xlabel('Frequency, Hz');ylabel('Gain, dB')
title('Gain Response of Chebyshev I Low-pass Filter
www.eeworm.com/read/402603/11532130
m m5high.m
clf;
fp=6500;fs=1500
wp=2*pi*fp;ws=2*pi*fs
[N,wn]=buttord(wp,ws,0.5,40,'s')
[b,a]=butter(N,wn,'high','s')
wa=0:(3*ws)/511:3*ws
h=freqs(b,a,wa)
H=zplane(h,1)
plot(wa/(2*pi),20*log10(abs(h)))
x