代码搜索:Array Signal Processing
找到约 10,000 项符合「Array Signal Processing」的源代码
代码结果 10,000
www.eeworm.com/read/357319/3019489
pas sample - array write.pas
var
A: array[1..1000] of integer;
i: Integer;
begin
for i := 1 to 1000 do
A[i] := i;
Result := 1;
for i := 1 to 1000 do
Result := Result + A[i];
end;
www.eeworm.com/read/357319/3019531
pas sample - array as parameter.pas
// This script not working !
// Arrays as parameters not supported now....
// Sorry....
unit cray;
function main: string;
var
A: array[1..10] of integer;
begin
InitArray(A);
//Resul
www.eeworm.com/read/357319/3019540
pas sample - array read.pas
var
A: array[1..10] of integer;
begin
Result := A[10];
end;
www.eeworm.com/read/351636/3101591
cxx testmeta12array.cxx
#include
#include
#include
#include
int main(int argc, char **argv)
{
MetaArray tObj;
tObj.InitializeEssential(10, MET_DOUBLE, 1, NULL, t
www.eeworm.com/read/267003/4269203
c array2tree.c
/*
** HTML::Tree
** array2tree.c
**
** Copyright (C) 2001 Paul J. Lucas
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public Lice
www.eeworm.com/read/262041/4315924
c bin2array.c
#include
#include
#include
#ifndef BUILD_WITH_VCC
#include
#endif
#include "utils.h"
#ifndef O_BINARY
#define O_BINARY 0
#endif
int debug;
#d
www.eeworm.com/read/261019/4326130
java nodevec2array.java
/*
* NodeVec2Array.java
*/
package EDU.gatech.cc.is.clay;
import java.lang.*;
import EDU.gatech.cc.is.util.Vec2;
/**
* A Node that returns an array of Vec2 values.
*
* For detailed inform
www.eeworm.com/read/260165/4335118
h fixed_array_unittest_.h
#if !defined(STLSOFT_INCL_STLSOFT_CONTAINERS_HPP_FIXED_ARRAY)
# error This file cannot be directly included, and should only be included within stlsoft/containers/fixed_array.hpp
#endif /* !STLSOF