代码搜索:Vector

找到约 10,000 项符合「Vector」的源代码

代码结果 10,000
www.eeworm.com/read/295491/8158834

cpp p4-198.cpp

#include #include #include using namespace std; //利用类模板生成实例 typedef vector < int > IntArray; //显示数组 void put_array(int x[],int size) { for(int i=0;i
www.eeworm.com/read/195327/8163767

cpp p4-198.cpp

#include #include #include using namespace std; //利用类模板生成实例 typedef vector < int > IntArray; //显示数组 void put_array(int x[],int size) { for(int i=0;i
www.eeworm.com/read/293761/8275669

m autocorr.m

%%%%%%%%%%%%% Autocorr %%%%%%%%%%%%%%% function Auto_co=Autocorr(vector) %%%% len=length(vector); vector=real(vector); Normal=mean(vector.*vector); vector_shift=vector; auto_corr=[];
www.eeworm.com/read/393315/8296523

vhd segment.vhd

---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 09:04:02 11/17/2006 -- Design Name: -- Module Name: segment -
www.eeworm.com/read/370734/9586974

java postion.java

import com.sun.j3d.utils.geometry.*; import com.sun.j3d.utils.universe.*; import javax.media.j3d.*; import javax.vecmath.*; public class Postion { public Postion() { SimpleUniverse universe =
www.eeworm.com/read/370313/9606029

h mvvt.h

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ /* */ /*
www.eeworm.com/read/172259/9715588

java~10~ node.java~10~

/** * Title: * * Description: * * Copyright: Copyright (c) 2006 * * Company: * * @author not attributable * @version 1.0 */ public class node {
www.eeworm.com/read/367345/9755597

cpp bvectr1.cpp

#include #include #include using namespace std; const ARRAY_SIZE = 0; void main(void) { typedef vector bit_vector; typedef bit_vector::iterator
www.eeworm.com/read/270032/11050322

h geom2d.h

#ifndef GEOM2D_H #define GEOM2D_H #include #include #ifndef ABS #define ABS(a) ((a) >= 0 ? (a) : -(a)) #endif #ifndef MAX #define MAX(a, b) ((a) >= (b) ? (a) : (b)) #define MI
www.eeworm.com/read/415177/11082755

vhd 61_assign.vhd

--*************************************************************** -- Following first two examples show that object of std_logic and -- object of logic can be assigned to each other -- Bbut