代码搜索:array

找到约 10,000 项符合「array」的源代码

代码结果 10,000
www.eeworm.com/read/279234/10453923

pl fig13_09.pl

#!/usr/bin/perl # Figure 13.9: fig13_09.pl # Demonstrates passing arrays to a function use warnings; use strict; my @array1 = ( 1 .. 8 ); my @array2 = ( 'a' .. 'e' ); my @mixed = arrayMixer
www.eeworm.com/read/279234/10453929

pl fig13_10.pl

#!/usr/bin/perl # Figure 13.10: fig13_10.pl # Demonstrates the return values of the ref function use strict; my @array = qw( hello world ); my %hash = ( key => "data" ); print( 'ref(10) =
www.eeworm.com/read/161094/10454692

c ssyr2.c

/* -- translated by f2c (version 19940927). You must link the resulting object file with the libraries: -lf2c -lm (in that order) */ #include "f2c.h" /* Subroutine */ int ssyr2_(char *uplo,
www.eeworm.com/read/161094/10454702

c dsyr2.c

/* -- translated by f2c (version 19940927). You must link the resulting object file with the libraries: -lf2c -lm (in that order) */ #include "f2c.h" /* Subroutine */ int dsyr2_(char *uplo,
www.eeworm.com/read/353007/10483842

js plane.js

function PlaneObject(id, name){this.id = id; this.name = name;} var Plane = new Array();
www.eeworm.com/read/423962/10512155

cxx test.cxx

#include"array.hxx" int main() { array a(10); for(int i=0;i
www.eeworm.com/read/352754/10515131

h gzip.h

/* gzip.h -- common declarations for all gzip modules * Copyright (C) 1992-1993 Jean-loup Gailly. * This is free software; you can redistribute it and/or modify it under the * terms of the GNU G
www.eeworm.com/read/160583/10516831

py image_interp.py

#!/usr/bin/env python """ The same (small) array, interpolated with three different interpolation methods. The center of the pixel at A[i,j] is plotted at i+0.5, i+0.5. If you are using interpolatio
www.eeworm.com/read/423609/10544279

m arraydelcr.m

function opt=arraydelcr(array,crnum,type) % 删除矩阵的行或列,如果type=0则删除的是行,否则删除的是列; % 鲁东大学张小峰编制, % 为了保证本软件代码的共享性,如果您要修改,请注明修改日期和修改者,谢谢您的合作 % QQ:250129131 iamzxf@126.com % 参数说明; % 第一个参数为要操作的矩阵; % 第二个
www.eeworm.com/read/278099/10570288

typ storage.typ

+++Date last modified: 05-Jul-1997 STORAGE TYPES A C language crib sheet from Jeff Galbraith int x; - x is an int. int *x; - x is a pointer to an int.