代码搜索:12位采样

找到约 5,644 项符合「12位采样」的源代码

代码结果 5,644
www.eeworm.com/read/323261/13346332

c ds18b02采样.c

#include sbit DQ =P3^7; //定义通信端口 //延时函数 void delay(unsigned int i) { while(i--); } //初始化函数 Init_DS18B20(void) { unsigned char x=0; DQ = 1; //DQ复位 delay(8); //稍做延时
www.eeworm.com/read/323261/13346337

c ds18b02采样.c

#include sbit DQ =P3^7; //定义通信端口 //延时函数 void delay(unsigned int i) { while(i--); } //初始化函数 Init_DS18B20(void) { unsigned char x=0; DQ = 1; //DQ复位 delay(8); //稍做延时
www.eeworm.com/read/345890/11783874

c 一次采样数字表.c

#include #include #include number[10]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90}; number1[10]={0x40,0x79,0x24,0x30,0x19,0x12,0x02,0x78,0x00,0x10}; sbit four=P2
www.eeworm.com/read/152291/12123918

m 6-1.m

x=0:0.05:5; % 长度101的x轴采样点 y=sin(x.^2); plot(x,y); y1=y-0.25; y2=y-0.5; plot(x,y,x,y1,x,y2)
www.eeworm.com/read/290937/8449950

m ex6_15.m

N=128; % 采样点数 T=1; % 采样时间终点 t=linspace(0,T,N); % 给出N个采样时间ti(I=1:N) x=12*sin(2*pi*10*t+pi/4)+5*cos(2*pi*40*t); % 求各采样点样本值x dt
www.eeworm.com/read/432936/8561712

m sawtooth.m

function f=sawtooth(t,To) % 生成锯齿波信号,周期为To,时间采样点向量为t f=10*rem(t,To)/To; % 在间断处平均数据 f(f==0|f==10)=5;