代码搜索:array
找到约 10,000 项符合「array」的源代码
代码结果 10,000
www.eeworm.com/read/319883/13440277
h array.h
// Array class template definition
#ifndef ARRAY_H
#define ARRAY_H
#include // For the exception classes
template class Array {
www.eeworm.com/read/319883/13440280
h array.h
// Array class template definition
#ifndef ARRAY_H
#define ARRAY_H
#include // For the exception classes
template class Array {
private:
T*
www.eeworm.com/read/315751/13536877
m array.m
% array.m - gain computation for 1D equally-spaced isotropic array
%
% Usage: [g, phi] = array(d, a, Nph);
%
% d = array spacing in units of lambda
% a = row vector of array weights
% Nph =
www.eeworm.com/read/315202/13548821
m array.m
clear all
N = 10;
d = 0.5;
alpha = 2*pi;
dip=[1:N];
kd=2*pi*d;
phi=[0:2*pi/800.1:2*pi];
framemax = 48;
M = moviein(framemax);
set(gcf,'Position',[100 100 640 480])
for n=1:framemax
u=kd*cos(ph
www.eeworm.com/read/314474/13566613
h array.h
/*
* Array.h --
* Extensible array class
*
* Copyright (c) 1995-2006 SRI International. All Rights Reserved.
*
* @(#)$Header: /home/srilm/devel/dstruct/src/RCS/Array.h,v 1.15 2006/01/09 18:11:1
www.eeworm.com/read/314474/13566634
cc array.cc
/*
* Array.cc --
* Extensible array implementation
*
*/
#ifndef _Array_cc_
#define _Array_cc_
#ifndef lint
static char Array_Copyright[] = "Copyright (c) 1995-2005 SRI International. All Rights
www.eeworm.com/read/312649/13606647
sbk array.sbk
.set reorder
.globl main
.text
.text
.align 2
.ent main
main:
.frame $sp,96,$31
.set noreorder
.cpload $25
.set reorder
addu $sp,$sp,-96
.mask 0xc2c00000,-64
sw $22,16($sp)
sw $23,20($sp
www.eeworm.com/read/312649/13606701
sbk array.sbk
.486
.model flat
extrn __fltused:near
extrn __ftol:near
public _main
_TEXT segment
_main:
push ebx
push esi
push edi
push ebp
mov ebp,esp
sub esp,60
mov dword ptr (-8)[ebp],0
L2:
mov dw
www.eeworm.com/read/312649/13606754
sbk array.sbk
.globl main
.text
.align 16
.type main,@function
main:
pushl %ebp
pushl %ebx
pushl %esi
pushl %edi
movl %esp,%ebp
subl $60,%esp
movl $0,-8(%ebp)
.LC2:
movl $0,-4(%ebp)
.LC6:
movl -4(%eb
www.eeworm.com/read/312649/13606776
c array.c
int x[3][4], *y[3];
main() {
int z[3][4];
int i, j, *p;
for (i = 0; i < 3; i++) {
for (j = 0; j < 4; j++)
x[i][j] = 1000*i + j;
y[i] = x[i];
}
f();
for (i = 0; i < 3; i++) {