搜索结果
找到约 80 项符合
SUM 的查询结果
按分类筛选
- 全部分类
- 其他 (9)
- matlab例程 (7)
- Java编程 (6)
- 数值算法/人工智能 (6)
- 汇编语言 (5)
- 源码 (5)
- 微处理器开发 (3)
- 通讯/手机编程 (3)
- 人工智能/神经网络 (3)
- Linux/Unix编程 (3)
- 单片机编程 (2)
- 数据结构 (2)
- 软件设计/软件工程 (2)
- VHDL/FPGA/Verilog (2)
- 编译器/解释器 (2)
- 数学计算 (2)
- Java书籍 (2)
- 书籍 (2)
- 电子书籍 (1)
- Delphi控件源码 (1)
- 串口编程 (1)
- 单片机开发 (1)
- 书籍源码 (1)
- 企业管理 (1)
- STL (1)
- SQL Server (1)
- 压缩解压 (1)
- 其他行业 (1)
- 通讯编程文档 (1)
- 技术书籍 (1)
- 其他 (1)
- 技术资料 (1)
技术书籍 LatentSVM论文
The object detector described below has been initially proposed by
P.F. Felzenszwalb in [Felzenszwalb2010]. It is based on a
Dalal-Triggs detector that uses a single filter on histogram of
oriented gradients (HOG) features to represent an object category.
This detector uses a sliding window approac ...
书籍 oracle查询语句
最近在学习Oracle,对测试人员而言必须掌握两种语言:第一种是DML,数据操纵语言
(Data Manipulation Language) 是SQL语言中,负责对数据库对象运行数据访问工作的指令集,以INSERT、UPDATE、DELETE三种指令为核心,分别代表插入、更新与删除。第二种是:DQL,数据查询语言
(Data Query Language) 是SQL语言中,负责进行 ...
源码 批处理感知器算法
批处理感知器算法的代码matlab
w1=[1,0.1,1.1;1,6.8,7.1;1,-3.5,-4.1;1,2.0,2.7;1,4.1,2.8;1,3.1,5.0;1,-0.8,-1.3;
    1,0.9,1.2;1,5.0,6.4;1,3.9,4.0];
w2=[1,7.1,4.2;1,-1.4,-4.3;1,4.5,0.0;1,6.3,1.6;1,4.2,1.9;1,1.4,-3.2;1,2.4,-4.0;
    1,2.5,-6.1;1,8.4,3.7;1,4.1,-2.2];
w3=[1,-3.0,-2. ...
源码 java学生数据库
/*import java.util.Scanner;
//主类
public class student122 {
  //主方法
  public static void main(String[] args){
    //定义7个元素的字符数组
    String[] st = new String[7];
    inputSt(st); &nbsp ...
源码 C语言算法排序问题
1.Describe a Θ(n lg n)-time algorithm that, given a set S of n integers and
another integer x, determines whether or not there exist two elements in S whose sum is exactly x. (Implement exercise 2.3-7.)
源码 c语言算法排序
1.Describe a Θ(n lg n)-time algorithm that, given a set S of n integers and
another integer x, determines whether or not there exist two elements in S whose sum is exactly x. (Implement exercise 2.3-7.)
#include<stdio.h>
#include<stdlib.h>
void merge(int arr[],int low,int mid,int high){
&nbsp; ...
其他 有限差分法
function&nbsp;[alpha,N,U]=youxianchafen2(r1,r2,up,under,num,deta)&nbsp;&nbsp;
&nbsp;&nbsp;
%[alpha,N,U]=youxianchafen2(a,r1,r2,up,under,num,deta)&nbsp;&nbsp;
%该函数用有限差分法求解有两种介质的正方形区域的二维拉普拉斯方程的数值解&nbsp;&nbsp;
%函数返回迭代因子、迭代次数 ...
源码 C语言编写雅可比迭代
# include<stdio.h>
# include<math.h>
# define N 3
main(){
&nbsp;&nbsp; &nbsp;float NF2(float *x,float *y);
&nbsp;&nbsp; &nbsp;float A[N][N]={{10,-1,-2},{-1,10,-2},{-1,-1,5}};
&nbsp;&nbsp; &nbsp;float b[N]={7.2,8.3,4.2},sum=0;
&nbsp;&nbsp; &nbsp;float x[N]= {0,0,0},y[N]={0},x0[N]={};
&nbsp;&nbsp; &n ...
书籍 Stochastic Geometry and Wireless Networks
A wireless communication network can be viewed as a collection of nodes, located in some domain, which
can in turn be transmitters or receivers (depending on the network considered, nodes may be mobile users,
base stations in a cellular network, access points of a WiFi mesh etc.). At a given time, s ...
技术资料 Verilog的135个经典设计 实例
【例3.1]4位全加器module adder 4(cout,sum i na,i nb,cin);output[3:0]sum output cout;input[3:0]i na,i nb;input cin;assign(cout,suml=i na +i nb+ci n;endmodule【例3.2]4位计数器module count 4(out,reset,clk);output[3:0]out;input reset,cl k;regl 3:01 out;always@posedge clk) ...