代码搜索:Array Signal Processing
找到约 10,000 项符合「Array Signal Processing」的源代码
代码结果 10,000
www.eeworm.com/read/361166/10065319
vi array subset demo.vi
www.eeworm.com/read/359831/10121936
h mp4array.h
/*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy o
www.eeworm.com/read/359581/10135218
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/358978/10172615
m lms_4array.m
clc;
clear all;
%********************************4 array************************************
M=4;%4 antenna
N=[0:M-1]';%line
ratio=0.5;
Fd=1;%bit rate
Fs=4;
Lx=2000;
delay=3;
r=0.5;
SNR=[10
www.eeworm.com/read/358784/10179685
bin binary array file.bin
www.eeworm.com/read/358499/10186344
m bft_convex_array.m
%BFT_CONVEX_ARRAY Create a convex array transducer
%
%USAGE : xdc = bft_convex_array(no_elements, width, kerf, Rconvex)
% OR : xdc = bft_convex_array(no_elements, pitch, Rconvex)
%
%INPUTS : no_e
www.eeworm.com/read/358499/10186355
m bft_linear_array.m
%BFT_LINEAR_ARRAY - Create a linear array.
%
%USAGE : xdc = bft_linear_array(no_elements, width, kerf)
% OR : xdc = bft_linear_array(no_elements, pitch)
%
%INPUT : no_elements - Number of elele
www.eeworm.com/read/358191/10194181
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/358191/10194235
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/358191/10194267
h array2d.h
#ifndef Array2D_
#define Array2D_
#include "xcept.h"
#include "array1d.h"
template
class Array2D {
friend ostream& operator