代码搜索:可编程序

找到约 10,000 项符合「可编程序」的源代码

代码结果 10,000
www.eeworm.com/read/203180/15364401

txt 读者写着程序讲课用.txt

#include "windows.h" #include #include #include #include #include #include #define READER 'R' //读者 #define WRIT
www.eeworm.com/read/202921/15369726

htm 232通信程序.htm

单片机中断控制
www.eeworm.com/read/202777/15373853

txt plc程序使用说明.txt

1、硬件使用S7-200PLC,CPU为226XM,使用端口0。编程电缆和通信电缆都使用PC/PPI电缆。可以使用老式的连线中间带盒子那种。使用这种连线时,按照书中所述方法进行参数配置。也可以使用新型PC/PPI电缆,即没有中间盒子那种。此时对电缆不需配置。 2、编程软件使用Micro/Win V3.2。安装该软件后,会在控制面板中生成一个Set PG/PC Interface程序,用来配置通信 ...
www.eeworm.com/read/202440/15384203

txt kalman 滤波的 matlab 程序 .txt

kalman 滤波的 matlab 程序 clear N=200; w(1)=0; w=randn(1,N) x(1)=0; a=1; for k=2:N; x(k)=a*x(k-1)+w(k-1); end V=randn(1,N); q1=std(V); Rvv=q1.^2; q2=std(x); Rxx=q2.^2;