代码搜索:Array Signal Processing
找到约 10,000 项符合「Array Signal Processing」的源代码
代码结果 10,000
www.eeworm.com/read/289976/3987195
cs cs_array_ref.cs
// cs_array_ref.cs
using System;
class TestRef
{
public static void FillArray(ref int[] arr)
{
arr[0] = 123;
arr[4] = 1024;
}
//对于引用类型,例如数组,不用ref也可以传出方法中改变的参数值,前提是在方法中不能用new初始化形参
www.eeworm.com/read/289976/3987207
cs cs_array_out.cs
// cs_array_out.cs
using System;
class TestOut
{
static public void FillArray(out int[] myArray)
{
// Initialize the array:
myArray = new int[5] {1, 2, 3, 4, 5};
}
static public
www.eeworm.com/read/286557/4039201
h java_array_template.h
/* ^_^
*
* Copyright (c) 2006 Hexin
*
* Description:
* TODO:
* Create:
* Date Time Author
* ------------------------------------------------
* 2006-3-22 14:05:58 Xia
www.eeworm.com/read/281827/4112474
m read_array_int.m
function A = read_array(filename);
fid = fopen(filename,'r');
dim = fread(fid,1,'uint');
for i = 1:dim
d(i) = fread(fid,1,'uint');
end;
[B,count] = fread(fid,prod(d),'int');
B = reshape(B,fliplr(d
www.eeworm.com/read/276066/4170100
java castinterface2array.java
/*
* Copyright 1999 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modi
www.eeworm.com/read/271875/4221669
h container_binary_array.h
/*
* binary_array.h
* $Id: container_binary_array.h 9757 2004-03-02 05:03:36Z rstory $
*/
#ifndef BINARY_ARRAY_H
#define BINARY_ARRAY_H
#ifdef __cplusplus
extern "C" {
#endif
#include
www.eeworm.com/read/440906/1774554
c array5_x.c
extern "C" void abort (void);
extern int count;
extern int num;
struct A
{
A();
~A();
};
struct Array
{
A array[2][2][2];
};
void
array5_x ()
{
for (num = 0; num
www.eeworm.com/read/440906/1774557
c array5_y.c
int count;
int num;
struct A
{
A();
~A();
};
A::A()
{
if (count == num)
throw "";
count++;
}
A::~A()
{
count--;
}