代码搜索:公差标注
找到约 582 项符合「公差标注」的源代码
代码结果 582
www.eeworm.com/read/186670/8919280
txt mch04-21.txt
二维枝干图
alpha = .02;
beta = .5;
t = 0:4:200;
y = exp(-alpha*t).*sin(beta*t);
stem(t,y)
xlabel('时 间 ( 微 秒 )') % 坐标轴的标注
ylabel('Magnitude')
www.eeworm.com/read/186670/8919361
txt mch03-05.txt
文本标注的精确定位
t = 0:900;
plot(t,0.25*exp(-0.005*t))
text(300,.25*exp(-0.005*300),...
'\bullet\leftarrow\fontname{times}0.25{\ite}^{-0.005{\itt}} ...
此处 {\itt} = 300',...
'FontSize',14)
www.eeworm.com/read/360331/10102438
txt 程序使用说明.txt
wavelet.dat 为输入地震数据
Comfile.dat 为压缩后输出二进制文件
编程环境 Dev-c++ 4.9.9.2
具体参数意义以及函数功能在源码中标注
www.eeworm.com/read/462042/7211882
txt 代码12-1.txt
surf(peaks(30)) % 对函数peaks生成数据进行三维表现
colorbar('YTickLabel',... % 设置颜色索引条的属性
{'Freezing','Cold','Cool','Neutral',... % 对颜色索引条上的标注进行设定
www.eeworm.com/read/262083/11607651
m plotpp.m
function plotpp(sig,fs)
%画出已知信号的频谱并且给出详细的标注
num=length(sig);
a=abs(fft(sig));
b=(0:num-1)*fs/num;
plot(b,a);grid off;
xlabel('频率');
ylabel('幅度');
www.eeworm.com/read/114552/15048181
txt mch04-21.txt
二维枝干图
alpha = .02;
beta = .5;
t = 0:4:200;
y = exp(-alpha*t).*sin(beta*t);
stem(t,y)
xlabel('时 间 ( 微 秒 )') % 坐标轴的标注
ylabel('Magnitude')
www.eeworm.com/read/114551/15048219
txt mch03-05.txt
文本标注的精确定位
t = 0:900;
plot(t,0.25*exp(-0.005*t))
text(300,.25*exp(-0.005*300),...
'\bullet\leftarrow\fontname{times}0.25{\ite}^{-0.005{\itt}} ...
此处 {\itt} = 300',...
'FontSize',14)