代码搜索:预置数
找到约 10,000 项符合「预置数」的源代码
代码结果 10,000
www.eeworm.com/read/262555/11586966
cpp ga_标准遗传算法.cpp
//copyright by zhangpeng ,May 5,2007
#include
#include
#include
#include
//-------------------------------------------
//产生(0,1)均匀分布的随机数
double rand
www.eeworm.com/read/158454/11614287
txt line_no.txt
for i=1:length(H(1,:)) %H的行数
k=1;
for j=1:length(H(:,1)) %H的列数
if H(j,i)==1
line_no(k,i)=j;
k=k+1;
end
end
end
www.eeworm.com/read/158454/11614304
txt row_no.txt
for j=1:length(H(:,1)) %H的列数
k=1;
for i=1:length(H(1,:)) %H的行数
if H(j,i)==1
row_no(j,k)=i;
k=k+1;
end
end
end
www.eeworm.com/read/158241/11630459
m ex0219.m
%用函数得出矩阵的大小
a=[1 2;3 4;5 6]
ndims(a) %得出维数
size(a) %得出各维的大小
size(a,2) %得出列的大小
length(a) %得出最大维的大小
www.eeworm.com/read/261518/11641033
asm 90092.asm
CS EQU P1.4
SLK EQU P1.5
SIN EQU P1.6
ORG 0000H
LJMP main
;.................................................
SEND_BYTE: ;发送字节到90092 R7待发送的数
www.eeworm.com/read/156590/11790688
cpp 3的倍数.cpp
#include
#include
void main()
{
int a,b;
printf("请输入任意一个数\n");
scanf("%d",&a);
b=a%3;
if (b==0) printf("yes\n");
else
printf("No\n");
getch
www.eeworm.com/read/156590/11790694
txt 3的倍数.txt
#include
#include
void main()
{
int a,b;
printf("请输入任意一个数\n");
scanf("%d",&a);
b=a%3;
if (b==0) printf("yes\n");
else
printf("No\n");
getch
www.eeworm.com/read/155928/11837591
txt 21-3.txt
/* 范例:21-3 try...throw...catch */
#include
void main(void)
{
int i, j;
cout j;
try
www.eeworm.com/read/258547/11856294
txt 21-3.txt
/* 范例:21-3 try...throw...catch */
#include
void main(void)
{
int i, j;
cout j;
try
www.eeworm.com/read/342272/12032159
m hzh_nn_ar_emd_compose.m
close all
%---------- Generate training and test set ----------
clear all
clc
load sunspot2003;%加载太阳黑子数
org_data=scale(sunspot2003,0,1); % 归一化load the normalised originate data sunspots
%-----