代码搜索:Vector
找到约 10,000 项符合「Vector」的源代码
代码结果 10,000
www.eeworm.com/read/436514/7769109
cpp vec_assign.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/435615/7789085
h matrix.h
#ifndef _MATRIX_H_
#define _MATRIX_H_
/**
* @file matrix.h
* Simple Math
*
* @author Marcelo Gattass
*
* @author Manuel E. L. Fernandez
*
* @date Jul06,2006
*
* Vector
www.eeworm.com/read/199851/7818408
m tdma.m
function X = TDMA(A,D,C,B)
% Tridiagonal Matrix Algorithm(三对角阵算法)
%
% Function: to solve the Tridiagonal system CX=B, where C is a Tridiagonal matrix
%
% Input - A is the subdiagonal of the
www.eeworm.com/read/199336/7866054
m windsim.m
function [ux,uy,tv] = windsim(t,fsamp,fcut,u,ak,fik)
%|||||||||||||||||||||||||||
% Output :
% ux = vector of windspeed sampled at a frequency fsamp over a total time t [m=s]
% uy = the timederiva
www.eeworm.com/read/433951/7902524
java internalaxiom.java
package JSHOP2;
import java.util.Vector;
/** Each axiom at compile time is represented as an instance of this class.
*
* @author Okhtay Ilghami
* @author
www.eeworm.com/read/433951/7902586
java state.java
package JSHOP2;
import java.util.Iterator;
import java.util.Vector;
import java.util.ArrayList;
/** This class is used to represent the current state of the world.
*
* @author Okhtay Ilghami
*
www.eeworm.com/read/433951/7902612
java internalmethod.java
package JSHOP2;
import java.util.Vector;
/** Each method at compile time is represented as an instance of this class.
*
* @author Okhtay Ilghami
* @author
www.eeworm.com/read/433951/7902623
g jshop2.g
//------------------------------- Header ----------------------------
header
{
package JSHOP2;
import java.io.IOException;
import java.util.LinkedList;
import java.util.Vector;
}
//--------