代码搜索:Array Signal Processing
找到约 10,000 项符合「Array Signal Processing」的源代码
代码结果 10,000
www.eeworm.com/read/168218/9933006
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
www.eeworm.com/read/168218/9933008
out array1d.out
X[3] = 3
X is 0 1 2 3 4 5 6 7 8 9
Y is 0 1 2 3 4 5 6 7 8 9
X incremented by 2 is 2 3 4 5 6 7 8 9 10 11
(Y + X) * Y is 0 4 12 24 40 60 84 112 144 180
-(
www.eeworm.com/read/168218/9933020
h array1d.h
#ifndef Array1D_
#define Array1D_
// One-dimensional arrays.
#include
#include "xcept.h"
template
class Array1D {
friend ostream& operator
www.eeworm.com/read/166915/9990258
h array2_t.h
#pragma once
template
class array2_T
{
public:
//创建一个空的二维数组
array2_T(void);
//创建一个二维数组,内容为0
array2_T(unsigned int nRow, unsigned int nCol);
//创建一个二维数组,如果bFreeMem为真,就拷贝数
www.eeworm.com/read/361858/10033699
txt array_divider.vhd.txt
-------------------------------------------------------------------------------
--
-- Universitaet Heidelberg
-- Kirchhoff-Institut fuer Physik
-- Lehrstuhl fuer Technische Informatik
--
-- Filename:
www.eeworm.com/read/361166/10065309
vi array build demo.vi
www.eeworm.com/read/361166/10065312
vi array index demo.vi
www.eeworm.com/read/361166/10065315
vi array initialization demo.vi
www.eeworm.com/read/361166/10065316
vi array size demo.vi
www.eeworm.com/read/361166/10065318