代码搜索:array
找到约 10,000 项符合「array」的源代码
代码结果 10,000
www.eeworm.com/read/458661/7291966
m yagi.m
% yagi.m - simplified Yagi-Uda array design
%
% Usage: [I,D,Rfb] = yagi(L,a,d)
%
% L = dipole lengths (in wavelengths) = [L1,L2,..,LK]
% a = dipole diameters = [a1,a2,...,aK]
% d = dipole locati
www.eeworm.com/read/458552/7294398
js lunar.js
//获得任意日期的农历,以及各种节日、节气等 isaac 修改万年历而得 Aug 2nd 2005
/*****************************************************************************
日期资料
****************************
www.eeworm.com/read/457710/7319121
m hough.m
function [h] = Hough(image)
%Function to perform Hough Transform on an image
%Inputs: image
%Returns: h
%
%image: It is the input image.
%h: It is the accumulator array
%
%Example:
%
www.eeworm.com/read/456569/7344699
cpp object.cpp
/*------------------------------------------------------------------------*/
/* */
/* OBJECT.CPP
www.eeworm.com/read/456497/7347910
cpp c34.cpp
// c34.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "Array.h"
#include
int main(int argc, char* argv[])
{
int width = 5;
int le
www.eeworm.com/read/456402/7349920
h sort.h
/*****************************************************
Zhang Pengpeng (rocflyhi@gmail.com)
from
Colleage of Information Science and Technology
Nanjing University of Aeronautics and Astronautics
www.eeworm.com/read/456386/7350045
c twodim.c
# include
void main()
{
int array[16][16];
int i, j, k, m, n;
/* 变量初始化 */
m = 1;
while(m == 1)
{
printf("请输入n(0
www.eeworm.com/read/456357/7351273
h param.h
/*
Optann, a Khepera simulator including a separate GA and ANN
(Genetic Algoritm, Artificial Neural Net).
Copyright (C) 2000 Johan Carlsson (johanc@ida.his.se)
This program is free softwa
www.eeworm.com/read/455488/7370812
m calcv.m
function V=calcV(P,K)
V=zeros(9,1);
for i=1:9
V(i,1)=exp(-j* P(i,:)*K); % Array Manifold Vector
end