代码搜索:预置数
找到约 10,000 项符合「预置数」的源代码
代码结果 10,000
www.eeworm.com/read/431293/8691010
cpp main.cpp
// MAIN.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include "ISODATA.h"
using namespace std;
int N = 8; // 实际模式个数
int dim = 2; // 实际模式维数
/*********************************************
www.eeworm.com/read/286675/8750297
txt 液晶基础程序.txt
#include
#include
#define uchar unsigned char
//**************************************************//
//函 数 功 能: 1602液晶显示程序
//函数输入参数: PA数据输出连接1602液晶 数据显示
//CPU芯片类型:
www.eeworm.com/read/286613/8755772
cpp p4-197.cpp
#include
#include
#include
using namespace std;
//返回一个Fibonacci数,其由generate_n()算法调用
int Fibonacci1(void)
{
static int r;
static int f1 = 0;
sta
www.eeworm.com/read/286613/8756349
cpp p4-197.cpp
#include
#include
#include
using namespace std;
//返回一个Fibonacci数,其由generate_n()算法调用
int Fibonacci1(void)
{
static int r;
static int f1 = 0;
sta
www.eeworm.com/read/386257/8759537
m atken.m
function f = Atken(x,y,x0)
syms t;
if(length(x) == length(y))
n = length(x);
else
disp('x和y的维数不相等!');
return;
end %检错
y1(1:n) = t;
www.eeworm.com/read/429140/8816878
m adapt_filter_arithmetic.m
t=500; %----设置迭代步数----
mu=0.1; %----设置步长----
nvar=0.01;
noise=nvar*randn(1,t); %----设置噪声----
n=11;
B=[0.3 0.9 0.3];
A=[1 0 0];
for k=1:t
if rand>0.5
signal(k)=-1;
else
www.eeworm.com/read/382803/8999443
java nqueen1.java
//n后问题 P165
public class NQueen1 {
static int n; //皇后个数
static int [] x; //当前解
static long sum; //当前已找到的可靠方案数
public static long nQueen(int nn)
www.eeworm.com/read/382803/8999466
java loading.java
//P154算法
public class Loading {
static int n; //集装箱数
static int[] w; //集装箱重量数组
static int c; //第一艘轮船的载重量
static i