代码搜索:Array Signal Processing

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

代码结果 10,000
www.eeworm.com/read/203062/15366973

pro array_cut_max.pro

; NAME: array_cut_max ; ; PURPOSE: Select elements out of an array ; ; CATEGORY: ; ; CALLING SEQUENCE: ; Result = array_cut_max(x, y, z, x_max, y_max) ; ; INPUTS: ; x: array of x value
www.eeworm.com/read/202494/15381425

h array_object.lut.h

/* Automatically generated from array_object.cpp using ./create_hash_table. DO NOT EDIT ! */ #include "lookup.h" namespace KJS { const struct HashEntry arrayTableEntries[] = { { "toString", Arra
www.eeworm.com/read/201477/15407294

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/201477/15407348

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/201477/15407380

h array2d.h

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

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/201477/15407543

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/201477/15407708

h array1d.h

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

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/200619/15428526

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