代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/372365/9512583
m ex2.m
fb=16;
fc=16;
fs=512;
nn=16;
%msg=randint(nn,1);
msg=[1 1 0 1 0 1 0 0 1 1 0 1 0 0 1 1];
msg1=msg*2-1;
a=msg1(1:2:nn-1);
b=msg1(2:2:nn);
for i=1:8
if a(i)==-1
if b(i)==-1
www.eeworm.com/read/372266/9514653
m exp2_4_.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
hold on %允许在同一坐标系下绘制不同的图形
plot(t,sin(t),'r:*')
plot(t,cos(t))
plot(t,-cos(t),'k')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
hold off %覆盖旧图
www.eeworm.com/read/372266/9514665
m exp2_4.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
figure(1) %选择图像
plot(t,sin(t),'r:*')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
grid off %删除栅格
figure(2)
plot(t,cos(t))
grid on
grid off
www.eeworm.com/read/372259/9515106
m exp2_4_.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
hold on %允许在同一坐标系下绘制不同的图形
plot(t,sin(t),'r:*')
plot(t,cos(t))
plot(t,-cos(t),'k')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
hold off %覆盖旧图
www.eeworm.com/read/372259/9515121
m exp2_4.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
figure(1) %选择图像
plot(t,sin(t),'r:*')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
grid off %删除栅格
figure(2)
plot(t,cos(t))
grid on
grid off
www.eeworm.com/read/371917/9531120
m chap3_11f.m
function [y]=func(x1,x2,x3)
for l1=1:1:3
gs1=-[(x1+pi/6-(l1-1)*pi/6)/(pi/12)]^2;
u1(l1)=exp(gs1);
end
for l2=1:1:3
gs2=-[(x2+pi/6-(l2-1)*pi/6)/(pi/12)]^2;
u2(l2)=exp(gs2);
end
www.eeworm.com/read/371781/9536974
m rthet.m
%%%%%%%%%%%%% 10*10平面阵的指向性 %%%%%%%%%%%%%
clear all;clc;
f=60*10^3;
fs=5*f;
w=2*pi*f;
c=1500;
lmd=c/f;
%d=lmd/2;
d=0.015;
theti=30*pi/180;%入射信号的方位角-45~45,与平面阵的夹角
faii=0*pi/180;%入射信号的俯仰角0~90,
www.eeworm.com/read/371700/9541219
m getnyquist.m
function [ y ] = GetNyquist(alpha,Periode,temps)
for (it=1:length(temps))
t = temps(it);
if (t==0)
y(it) = 4*alpha/(pi*sqrt(Periode))*(1+(1-alpha)/(4*alpha)*pi);
elseif or(t==Periode/(4*alpha
www.eeworm.com/read/174647/9579018
cpp hmmutils.cpp
//hmmutils.cpp
//date:2001.10.11
// Purpose: utilities for reading, writing HMM stuff.
#include
#include
#include
#include "nrutils.h"
#include "hmm.h"
st
www.eeworm.com/read/174605/9580237
cpp p1-14.cpp
#include
const double PI=3.1416; //声明常量(const变量)PI为3.1416
main()
{
//声明3个变量
double r=3,l,s;
//计算圆的周长
l=2*PI*r;
cout