搜索结果
找到约 3,389 项符合
p-n 的查询结果
数据结构 #include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #defin
#include "stdio.h"
#include "math.h"
#include "malloc.h"
#include "string.h"
#define m 6
#define n 29
#define p 0.5
数据结构 #include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #defin
#include "stdio.h"
#include "math.h"
#include "malloc.h"
#include "string.h"
#define m 6
#define n 29
#define p 0.5
数学计算 #include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #defin
#include "stdio.h"
#include "math.h"
#include "malloc.h"
#include "string.h"
#define m 6
#define n 29
#define p 0.5
人工智能/神经网络 #include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #defin
#include "stdio.h"
#include "math.h"
#include "malloc.h"
#include "string.h"
#define m 6
#define n 29
#define p 0.5
单片机开发 This a demo illustrating (1) 8-bit CRC check sums, (2) 57600,N,9,1 communications, and (3) RS-422/R
This a demo illustrating (1) 8-bit CRC check sums, (2) 57600,N,9,1
communications, and (3) RS-422/RS-485 communications.
其他 两序列x(n)和y(n)的交叉谱分析
两序列x(n)和y(n)的交叉谱分析,ol(0:m)频率,tl(0:m)周期,px(0:m)是x(n)的连续功率谱,py(0:m)是y(n)的连续功率谱,pxy(0:m)协谱,qxy(0:m)余谱,rxy(0:m)凝聚谱,cxy(0:m)位相差谱,lxy(0:m)滞后时间长度谱,rxy951(0:m)凝聚谱F-检验的95%置信上限,rxy952(0:m)凝聚谱Goodman-检验的95%置信上限,其中m=[n/2.]。 ...
matlab例程 用MATLAB实现的不合格品率P控制图的绘制
用MATLAB实现的不合格品率P控制图的绘制,只要将数据导入data.txt文件,然后在MATLAB中运行main.m文件即可打开绘图界面。(注意:路径要设置好)
书籍源码 java 程序设计100例p 程序设计100例p 程序设计100例p
java 程序设计100例p 程序设计100例p 程序设计100例p
汇编语言 汇编程序和实验报告 1.输入0-100之间的n值
汇编程序和实验报告
1.输入0-100之间的n值,计算Fibonacci数,以十进制数输出。
2.从键盘输入一行字符,以‘$’结束,查找输入的字符串是否包含’computer’ 字符串,如果包含,计算包含’computer’字符串的个数,并以十进制输出个数。
3.建立歌曲文档,按演唱者排序,程序可接收查找的演唱者,并输出其所有的歌曲。
4.建 ...
数据结构 将大数看作一个n进制数组
将大数看作一个n进制数组,对于目前的32位系统而言n可以取值为2的32次方,即0x10000000,
假如将一个1024位的大数转化成0x10000000进制,它就变成了32位,而每一位的取值范围就不是0-1
或0-9,而是0-0xffffffff。我们正好可以用一个无符号长整数来表示这一数值。所以1024位的大数
就是一个有32个元素的unsigned long数组。 ...