代码搜索:数字调频
找到约 10,000 项符合「数字调频」的源代码
代码结果 10,000
www.eeworm.com/read/476835/6751351
frm di.frm
VERSION 5.00
Object = "{B69B88D6-A697-11D2-AA03-002018650913}#1.1#0"; "Addin.ocx"
Begin VB.Form DAQForm
BorderStyle = 3 'Fixed Dialog
Caption = "数字量输入"
ClientHeight
www.eeworm.com/read/410511/11280318
c 7-41.c
/*将字符串a与字符串b转换成数字后相加*/
#include
main()
{
char a[]="1000000000";
char b[]=" 234567890";
long c;
c=atol(a)+atol(b);
printf("c=%d\n",c);
}
www.eeworm.com/read/410511/11280361
c 7-40.c
/* 将字符串a 与字符串b转换成数字后相加*/
#include
main()
{
char a[]="–100";
char b[]="456";
int c;
c=atoi(a)+atoi(b);
printf("c=%d\n",c);
}
www.eeworm.com/read/264473/11311898
c 7-41.c
/*将字符串a与字符串b转换成数字后相加*/
#include
main()
{
char a[]="1000000000";
char b[]=" 234567890";
long c;
c=atol(a)+atol(b);
printf("c=%d\n",c);
}
www.eeworm.com/read/264473/11311929
c 7-40.c
/* 将字符串a 与字符串b转换成数字后相加*/
#include
main()
{
char a[]="–100";
char b[]="456";
int c;
c=atoi(a)+atoi(b);
printf("c=%d\n",c);
}
www.eeworm.com/read/263650/11351202
java integer.java
//判断输入的是否为数字
public class integer {
public static boolean isInteger(String s){
int low=0;
int up=s.length()-1;
while(low
www.eeworm.com/read/400041/11585706
m bpsk.m
% bpsk.m
% Simulation program to realize BPSK transmission system
%
% 这个程序仿真了数字信号的BPSK调制及相关解调,
% 传输信道为加性高斯白噪声信道(AWGN)
%******************** Preparation part **********************
sr=25600
www.eeworm.com/read/400041/11585707
m bpsk.m
% bpsk.m
% Simulation program to realize BPSK transmission system
%
% 这个程序仿真了数字信号的BPSK调制及相关解调,
% 传输信道为加性高斯白噪声信道(AWGN)
%******************** Preparation part **********************
sr=25600
www.eeworm.com/read/347305/11674744
html readme.html
高速数字电路设计
更多资料请访问: http://www.xinworks.com
================
www.eeworm.com/read/254929/12112059
java dataonly.java
/** DataOnly.java*/
/** 计算机系 数字媒体专业
@author 姜斌 05990046*/
public class DataOnly{
int i;
float f;
boolean b;
//**给函数定义三个变量*/
public static void main (String args[ ]) {