代码搜索:预置数
找到约 10,000 项符合「预置数」的源代码
代码结果 10,000
www.eeworm.com/read/156813/11761990
cpp p3-148.cpp
#include
#include
#include
//main()函数的定义
void main( void )
{
double y;
int N;
//输入一个大于等于0的数
do {
coutN;
www.eeworm.com/read/345930/11781332
cpp xt3-20-2.cpp
#include
using namespace std;
int main()
{int m,s,i;
for (m=2;m
www.eeworm.com/read/258963/11830095
cpp template.cpp
//============================
//程序名称: .cpp
//程序描述:
//作者:
//日期:
//版本号: V0.0.1
//============================
// 如何设计实现对完数的判断?
// 题目要求输出的格式是怎样的?
// 如何提高程序运行效率?
#include
www.eeworm.com/read/155903/11838748
cpp xt3-20-2.cpp
#include
using namespace std;
int main()
{int m,s,i;
for (m=2;m
www.eeworm.com/read/258816/11841042
cpp p3-148.cpp
#include
#include
#include
//main()函数的定义
void main( void )
{
double y;
int N;
//输入一个大于等于0的数
do {
coutN;
www.eeworm.com/read/343634/11937782
m zbesself.m
%Besself函数:设计贝塞尔模拟滤波器
N=5; %阶数的一半
Fs=1000;
Wn=[100 300]/(Fs/2); %得到归一化角频率
[b,a]=besself(N,Wn,'stop')
freqz(b,a);
www.eeworm.com/read/341602/12076148
m optstap.m
%opt2d.m: 全自由度空时自适应处理
clear
tic
%杂波仿真参数
N = 12; % 阵元个数
M = 10; % 相干脉冲数
CNR = 30; % 杂噪比
beta = 1; % 杂波
www.eeworm.com/read/341100/12108741
cpp l7_1.cpp
//建立无向图的邻接矩阵并输出
#include
const int n=4; // 图中顶点数
const int e=5;
typedef int elemtype; // 图中边数
struct graph
{
elemtype v[n+1];
www.eeworm.com/read/341100/12108751
cpp l7_5.cpp
//用邻接矩阵实现无向图的广度优先搜索遍历
#include
const int n=8; // 图中顶点数
const int e=10;
typedef int elemtype; // 图中边数
struct graph
{
elemtype v