代码搜索:M
找到约 10,000 项符合「M」的源代码
代码结果 10,000
www.eeworm.com/read/397965/8012531
m a.m
function [ A ] = A( x )
%A Summary of this function goes here
% Detailed explanation goes here
global data1
global data2
global theda
for i=1:8
A(i,1)=exp(x(2)/data1(i))
A(i,2)=x(1)/data1(i)
www.eeworm.com/read/397102/8068107
m or.m
function c = or(a,b)
if isa(a,'dataset') & ~isa(b,'dataset')
c = a.d | b;
elseif ~isa(a,'dataset') & isa(b,'dataset')
c = a | b.d;
else
c = a.d | b.d;
end
return
www.eeworm.com/read/397102/8068232
m and.m
function c = and(a,b)
if isa(a,'dataset') & ~isa(b,'dataset')
c = a.d & b;
elseif ~isa(a,'dataset') & isa(b,'dataset')
c = a & b.d;
else
c = a.d & b.d;
end
return
www.eeworm.com/read/245923/12771915
m tiaopin .m
x=fmlin(256,0,0.5);
% plot(real(x));
N=length(x);
K=3;
ny=0:K*N-1;
y=x(mod(ny,N)+1);
% plot(real(y));
% axis([0 1050 -3 3]);
% ft=fftshift(abs(fft(y)).^2);
% plot((-512:511)/1024,ft);
% xla
www.eeworm.com/read/331806/12807359
m a.m
clc,clear all
% close all
% close all hidden
% set(l1,'visible','off')
% set(l2,'visible','off')
% set(l3,'visible','off')
% set(l4,'visible','off')
% set(l5,'visible','off')
% set(l,'visible'
www.eeworm.com/read/328087/13046892
m for.m
function a(m,n)
for i=1:m
for j=1:n
a(i,j)=1/(i+j-1);
end
end
www.eeworm.com/read/328087/13046934
m a.m
function a(m,n)
for i=1:m
for j=1:n
a(i,j)=1/(i+j-1);
end
end
www.eeworm.com/read/139367/13159821
m 数据.m
% ziliao.m
A=[1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8
www.eeworm.com/read/323473/13339961
m a.m
[y,fs,bits]=wavread('b.wav');
%信号的频谱
m=fft(y,512); %取y的512点fft变换。
p=(0:255)/256*(fs/2);
wp=0.2*pi;ws=0.3*pi;Rp=30;Rs=120; %Fs=fs;Ts=1/Fs;
wp1=2*fs*tan(wp/2); %将模拟指标转换成数字指标