搜索结果
找到约 41 项符合
prime 的查询结果
按分类筛选
技术资料 AD9764 14位DAC数据采集FPGA VERILOG 逻辑驱动Quatus prime 18.
AD9764 14位DAC数据采集FPGA VERILOG 逻辑驱动Quatus prime 18.0完整工程文件,可以做为的设计参考。
ALTERA FPGA开发软件 Prime Time 1.20
用PrimeTime进行静态时序分析. §2.2 PrimeTime进行时序分析的流程 使用PrimeTime对一个电路设计进行静态时序分析,
数值算法/人工智能 北京大学ACM比赛题目 In 1742, Christian Goldbach, a German amateur mathematician, sent a letter to Leonhard
北京大学ACM比赛题目
In 1742, Christian Goldbach, a German amateur mathematician, sent a letter to Leonhard Euler in which he made the following conjecture:
Every even number greater than 4 can be
written as the sum of two odd prime numbers.
For example:
8 = 3 + 5. Both 3 and 5 are odd prime n ...
数值算法/人工智能 //Euler 函数前n项和 /* phi(n) 为n的Euler原函数 if( (n/p) % i == 0 ) phi(n)=phi(n/p)*i else phi(n)=phi(n/p
//Euler 函数前n项和
/*
phi(n) 为n的Euler原函数
if( (n/p) % i == 0 ) phi(n)=phi(n/p)*i
else phi(n)=phi(n/p)*(i-1)
对于约数:divnum
如果i|pr[j] 那么 divnum[i*pr[j]]=divsum[i]/(e[i]+1)*(e[i]+2) //最小素因子次数加1
否则 divnum[i*pr[j]]=divnum[i]*divnum[pr[j]] //满足积性函数条件
对于素因子的幂次 e[i ...
Java编程 Program Description: The program asks the user to choice from the menu an option
Program Description: The program asks the user to choice from the menu an option
A. Check to see if a number is prime.
B. Count the number of vowels in a line.
X. Exit the program.
接口技术 net_tcp.h
/*
*********************************************************************************************************
*                                             uC/TCP-IP V2
*       ...
书籍 C++ Prime 第5版 英文原版
本书适用于学习C++编程,作者权威,内容详尽。为英文原版。
书籍 Ultra Wideband - Circuits
Recent advances in wireless communication technologies have had a transforma-
tive impact on society and have directly contributed to several economic and social
aspects of daily life. Increasingly, the untethered exchange of information between
devices is becoming a prime requirement for further pr ...
源码 C++1000以内的素数
#include<iostream>
using namespace std;
int s=0;&nbsp;
int prime(int x){
int i,p=1;
for(i=2;i<=x/2;i++){
if(x%i==0){
p=0;
break;
}
}
if(p!=0){
cout<<x<< " ";
s++;
}
}&nbsp;
int main(){
for (int k=5;k<=100;k++){
prime(k);
if(s%5==0)
cout<<'\n';
}
return 0;
} ...
技术资料 基于MIPI+CSI-2协议的摄像头芯片数据发送端接口设计
随着手机摄像头和数码相机性能的提升,增加摄像头设备到平台处理器之间的传输带宽变越来越有必要,传统的DVP接口已经不能适应现在的科技发展。在这样的大形势下MIPI联盟应运而生,它制定了一个通用的标准来规范高性能移动终端的接口,而它的子协议MIPI CSI-2则完美的解决了摄像头设备与平台处理器之间高速通信的难题,提供 ...