代码搜索:M
找到约 10,000 项符合「M」的源代码
代码结果 10,000
www.eeworm.com/read/283041/9045841
@m=d
Index of /courses/GD/jsj/GD_jsj_008b/chap02
Index of /courses/GD/jsj/GD_jsj_008b/chap02
www.eeworm.com/read/283041/9045957
@m=d
Index of /courses/GD/jsj/GD_jsj_008b/chap02/image
Index of /courses/GD/jsj/GD_jsj_008b/chap
www.eeworm.com/read/380151/9159712
m by.m
function [b,y]=by(m,n)
p=min(m,n);
for i=p:-1:1
if ((mod(m,i)==0)&(mod(n,i)==0))
y=i;
break;
end
end
b=m*n/y;
www.eeworm.com/read/378221/9240729
m a.m
fid1=fopen('G:\研究生课程\随机信号处理\RLS\1.dat','r');
signal=fread(fid1,800,'short');
fclose(fid1);
fid2=fopen('G:\研究生课程\随机信号处理\RLS\3.dat','r');
noisy=fread(fid2,800,'short');
fclose(fid2);
fid3=fope
www.eeworm.com/read/375021/9375536
m an.m
%模拟退火解决0-1背包问题
clear;
a=[92,4,43,83,84,68,92,82,6,44,32,18,56,83,25,96,70,48,14,58]; %体积
c=[44,46,90,72,91,40,75,35,8,54,78,40,77,15,61,17,75,29,75,63]; %价值
n=length(a);
b=878;
www.eeworm.com/read/168112/9939117
m 缩颈.m
%入射速度波
a=0:pi/6:pi;
Vm=sin(a);
%线性渐变截面处各点高度
h(1)=0.4;h(9)=0.4;
for i=1:1:7
h(i+1)=0.2;%等值变窄截面
end
%各单元之间的传递函数参数
for i=1:1:8
Tu(i)=h(i+1)/(h(i+1)+h(i));
Td(i)=h
www.eeworm.com/read/166175/10030824
m 攻击.m
clear;
B=(imread('lena.bmp'));%读入原图
Z=B;
% Z = imrotate(B,1);%旋转 角度可以控制
% Z(128:256,256:384)=255;%剪切 区间和嵌入值可以控制
% Z=imnoise(Z,'gaussian');%加噪声 选择参数 help imnoise
imwrite(Z,'lenaattack2