代码搜索:Array Signal Processing

找到约 10,000 项符合「Array Signal Processing」的源代码

代码结果 10,000
www.eeworm.com/read/294317/8240569

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/294317/8240575

h array1d.h

#ifndef Array1D_ #define Array1D_ // One-dimensional arrays. #include #include "xcept.h" template class Array1D { friend ostream& operator
www.eeworm.com/read/294317/8240725

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/294317/8240728

h array2d.h

#ifndef Array2D_ #define Array2D_ #include "xcept.h" #include "array1d.h" template class Array2D { friend ostream& operator
www.eeworm.com/read/294317/8240732

h array1d.h

#ifndef Array1D_ #define Array1D_ // One-dimensional arrays. #include #include "xcept.h" template class Array1D { friend ostream& operator
www.eeworm.com/read/192849/8269649

c memdma_array_init.c

#include ".\h_file\system.h" ushort desc_array_S0[21]; ushort desc_array_D0[21]; memDMA_array_init(uint in1,uint in2,uint out1,uint out2) { ushort * desc_S; ushort * desc_D; uchar i;
www.eeworm.com/read/292920/8323935

c array2d.c

// array2d.c -- functions for 2d arrays #include #define ROWS 3 #define COLS 4 void sum_rows(int ar[][COLS], int rows); void sum_cols(int [][COLS], int ); // ok to omit names int su
www.eeworm.com/read/370636/9589540

m array_get_val.m

function y = array_get_val( x, ind ) % array_set_val - access a multidimensional array using a vector for the index % % y = array_get_val( x, ind ); % % Copyright (c) 2004 Gabriel Peyr
www.eeworm.com/read/370636/9589555

m array_set_val.m

function y = array_set_val( x, ind, v ) % array_set_val - set a value in a multidimensional array using a vector for the index % % y = array_set_val( x, ind, v ); % % Copyright (c) 2004 Gab
www.eeworm.com/read/174180/9605144

h array3d.h

#ifndef _ARRAY3D_H_ #define _ARRAY3D_H_ #include "afxtempl.h" #include "array2d.h" template class AFX_EXT_CLASS CArray3d { int m_nLayer; CArray2d *m_pArray2d; public: CAr