代码搜索:Array Signal Processing
找到约 10,000 项符合「Array Signal Processing」的源代码
代码结果 10,000
www.eeworm.com/read/260986/11681431
h array2d.h
// ============================================================================
// Data Structures For Game Programmers
// Ron Penton
// Array2D.h
// This is the 2D Aray class
// ================
www.eeworm.com/read/260986/11681535
h array2d.h
// ============================================================================
// Data Structures For Game Programmers
// Ron Penton
// Array2D.h
// This is the 2D Aray class
// ================
www.eeworm.com/read/260986/11681874
h array2d.h
// ============================================================================
// Data Structures For Game Programmers
// Ron Penton
// Array2D.h
// This is the 2D Aray class
// ================
www.eeworm.com/read/260986/11682291
h array2d.h
// ============================================================================
// Data Structures For Game Programmers
// Ron Penton
// Array2D.h
// This is the 2D Aray class
// ================
www.eeworm.com/read/260986/11682416
h array3d.h
// ============================================================================
// Data Structures For Game Programmers
// Ron Penton
// Array3D
// This is the 3D Array Class.
// ================
www.eeworm.com/read/260986/11682428
h array2d.h
// ============================================================================
// Data Structures For Game Programmers
// Ron Penton
// Array2D.h
// This is the 2D Aray class
// ================
www.eeworm.com/read/157453/11702946
out array2d.out
X[2][1] = 5
X is
0 1
2 3
4 5
Y is
0 1
2 3
4 5
X incremented by 2 is
2 3
4 5
6 7
Y + X is
2 4
6 8
10 12
-(Y + X) is
-2 -4
-6 -8
-10
www.eeworm.com/read/157453/11703210
cpp array2d.cpp
// test 2D array class
#include
#include "array2d.h"
void main(void)
{
try {
int i, j;
Array2D X(3,2), Y, Z;
for (i = 0; i < 3; i++)
for (j
www.eeworm.com/read/157453/11703358
h array2d.h
#ifndef Array2D_
#define Array2D_
#include "xcept.h"
#include "array1d.h"
template
class Array2D {
friend ostream& operator
www.eeworm.com/read/157453/11704002
cpp array1d.cpp
// test 1D array class
#include
#include "array1d.h"
void main(void)
{
try {
Array1D X(10), Y, Z;
for (int i=0; i < 10; i++)
X[i] = i;
co