代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/114549/15048247
txt mch02-13.txt
双Y轴图形的绘制
t = 0:pi/20:2*pi;
y = exp(sin(t));
plotyy(t,y,t,y,'plot','stem')
www.eeworm.com/read/114549/15048250
txt mch02-24.txt
紧缩后的坐标轴具有相同数据单位的图形
t = 0:pi/20:2*pi;
plot(sin(t),2*cos(t))
grid on
axis equal tight
www.eeworm.com/read/114549/15048253
txt mch02-23.txt
坐标轴具有相同数据单位的图形
t = 0:pi/20:2*pi;
plot(sin(t),2*cos(t))
grid on
axis equal
www.eeworm.com/read/114549/15048267
txt mch02-22.txt
x轴和y轴长度相同情况下绘制的图形
t = 0:pi/20:2*pi;
plot(sin(t),2*cos(t))
grid on
axis square
www.eeworm.com/read/215497/15059437
m program_3_2.m
% Program 3_2
% Generate the filter coefficients
h1 = ones(1,5)/5; h2 = ones(1,14)/14;
% Compute the frequency responses
[H1,w] = freqz(h1, 1, 256);
[H2,w] = freqz(h2, 1, 256);
% Compute and p
www.eeworm.com/read/215497/15059573
m program_3_2.m
% Program 3_2
% Generate the filter coefficients
h1 = ones(1,5)/5; h2 = ones(1,14)/14;
% Compute the frequency responses
[H1,w] = freqz(h1, 1, 256);
[H2,w] = freqz(h2, 1, 256);
% Compute and p
www.eeworm.com/read/215418/15061790
asv shiyan1.asv
t=-2:0.02:6;
y=rectpuls(t-1.5,1);
axis([-2,3,0,3]);
x=exp(-1*t).*cos(10*pi*t).;
plot(t,x)
www.eeworm.com/read/215418/15061813
m shiyan1.m
t=-2:0.000001:6;
y=rectpuls(t-1.5,1);
x=exp(-1*t).*cos(10*pi*t).*y;
axis([-2,3,0,3]);
plot(t,x)
www.eeworm.com/read/215382/15062497
m axis542.m
function axis542
x = 0:.025:pi/2;
plot(x,tan(x),'-ro')
axis([0 pi/2 0 5])
www.eeworm.com/read/215382/15062511
m comet531.m
function comet531
figure(1)
t = 0:.01:2*pi;
x = cos(2*t).*(cos(t).^2);
y = sin(2*t).*(sin(t).^2);
comet(x,y);