代码搜索:Array Signal Processing
找到约 10,000 项符合「Array Signal Processing」的源代码
代码结果 10,000
www.eeworm.com/read/183546/9154993
exe raw2array.exe
www.eeworm.com/read/183362/9167166
c array2char.c
/*
array2char()的目的是把一个四元素(数字)数组转换成一个字符串,
测试结果把{192,168,1,1}转换成"192.168.1.1"字符串;
*/
#include "string.h"
#include "stdio.h"
char *array2char(unsigned char array[],int arraylen)
{
int i;
uns
www.eeworm.com/read/181164/9271722
3wy wy_array.3wy
.\"
.\" Edited by I.J.Wang, 2006
.\"
.TH Wy_Array 3wy "libwy v0.31"
.SH NAME
Wy_Array \- class template of dynamic array
.SH SYNOPSIS
.B #include
.PP
Wy_Array is a class template for d
www.eeworm.com/read/374674/9389616
dat one_array1.dat
1651 2 0 0 0
166
166
166
149
114
106
106
106
106
106
106
114
106
106
106
114
106
114
114
106
114
114
114
114
114
114
166
174
174
174
174
174
174
182
174
174
174
www.eeworm.com/read/374674/9389628
dat one_array4.dat
1651 2 0 0 0
166
166
166
149
114
106
106
106
106
106
106
114
106
106
106
114
106
114
114
106
114
114
114
114
114
114
166
174
174
174
174
174
174
182
174
174
174
www.eeworm.com/read/374674/9389631
dat one_array2.dat
1651 2 0 0 0
166
166
166
149
114
106
106
106
106
106
106
114
106
106
106
114
106
114
114
106
114
114
114
114
114
114
166
174
174
174
174
174
174
182
174
174
174
www.eeworm.com/read/176336/9503345
txt npc_test_array.txt
// 攝楍偺僥僗僩
prontera.gat,164,190,1 script 攝楍僥僗僩 112,{
set @hoge[0],1;
set @hoge[1],5;
mes "hoge[2]傪擖椡偟偰偔偩偝偄";
next;
input @hoge[2];
mes "hoge => " + @hoge;
mes "hoge[0]=> " + @hoge[0];
www.eeworm.com/read/372507/9507236
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/372507/9507238
h array2d.h
#ifndef Array2D_
#define Array2D_
#include "xcept.h"
#include "array1d.h"
template
class Array2D {
friend ostream& operator
www.eeworm.com/read/372507/9507241
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