代码搜索:Vector
找到约 10,000 项符合「Vector」的源代码
代码结果 10,000
www.eeworm.com/read/336232/12462548
h vector.h
#ifndef VECTOR_H
#define VECTOR_H
//#include "timefft.h"
template
class Vector
{
private:
T *pvector;
public:
int number;
Vector()
:number (0)
,pvector (NULL)
{
www.eeworm.com/read/132141/14107450
h vector.h
#ifndef Vector_
#define Vector_
#include
#include "xcept.h"
template
class Vector {
public:
Vector(int size = 0);
Vector(const Vector& v); //copy construct
www.eeworm.com/read/132141/14107934
cpp vector.cpp
#include
#include "vector.h"
void main(void)
{
try {
Vector X(10), Y, Z;
for (int i=1; i
www.eeworm.com/read/132132/14108153
c vector.c
#define VECTOR_C
/******************************************************************************
*
* Copyright (C) 2003 Motorola, Inc.
* All Rights Reserved
*
* Filename: $RCSfil
www.eeworm.com/read/132132/14108212
lst vector.lst
ANSI-C/cC++ Compiler for HC08 V-5.0.17, Apr 22 2003
1: #define VECTOR_C
2: /******************************************************************************
3: *
4: * Cop
www.eeworm.com/read/233961/14127319
h vector.h
;************************************************************
; File name: vector.h
; Interrupt Vector declarations
; This section contains the vectors for various interrupts in
; the ’240x. Unuse
www.eeworm.com/read/131493/14143353
asm vector.asm
.mmregs
.sect ".vector"
.ref _c_int00
.ref loop_pro
.def reset_pro
.align 0x80 ; must be aligned on page boundary
reset_pro:
www.eeworm.com/read/131493/14143370
asm vector.asm
.mmregs
.sect ".vector"
.ref _c_int00
.ref loop_pro
.def reset_pro
.align 0x80 ; must be aligned on page boundary
reset_pro:
www.eeworm.com/read/233179/14165273
h vector.h
;************************************************************
; File name: vector.h
; Interrupt Vector declarations
; This section contains the vectors for various interrupts in
; the '24
www.eeworm.com/read/130490/14190188
h vector.h
#ifndef VECTOR_H
#define VECTOR_H
#include
#include "darray.h"
#include "iarray.h"
#define VECTOR_TYPE float
#define VECTOR_TYPE_MAX FLT_MAX
/**
* Vector.
*/
typedef struct {
VECTOR