代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/489524/6472566
m circular_array.m
%Circular Array in the x-y plane
% Element is a short dipole antenna parallel to the z axis
% 2D Radiation Patterns for fixed phi or fixed theta
% dB polar plots uses the polardb.m file
% Last m
www.eeworm.com/read/489524/6472569
m rect_array.m
function [pattern] = rect_array(Nxr,Nyr,dolxr,dolyr,theta0,phi0,winid,win,nbits);
%%%%%%%%%%%%%%%%%%%% ************************ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% This function computes the 3-D
www.eeworm.com/read/489524/6472575
m circ_array.m
function [pattern,amn] = circ_array(N,dolxr,dolyr,theta0,phi0,winid,win,nbits);
%%%%%%%%%%%%%%%%%%%% ************************ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% This function computes the 3-D d
www.eeworm.com/read/489524/6472581
m linear_array.m
function [theta,patternr,patterng] = linear_array(Nr,dolr,theta0,winid,win,nbits);
% This function computes and returns the gain radiation pattern for a linear array
% It uses the FFT to computes th
www.eeworm.com/read/488496/6488091
cpp array_init.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/488496/6488171
cpp copy_array.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/488496/6488342
cpp copy_array.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/487279/6517766
java array6.java
public class Array6{
public static void main (String[] args){
int [] arr1={1,2,3,4,5};
int [] arr2={1,2,3,4,5};
int [] tmp=arr1;
System.out.println(arr1==tmp);
System.out.printl
www.eeworm.com/read/487279/6517770
java array4.java
import java.util.Scanner;
import java.util.Arrays;
public class Array4{
public static void main (String[] args){
Scanner scanner=new Scanner(System.in);
int [] arr={5,7,8,9,2,3,6,9,45,78,59};
www.eeworm.com/read/487279/6517774
java array3.java
public class Array3{
public static void main(String[] args){
int[] arr1={1,2,3,4,5};
int[] arr2=new int[5];
System.arraycopy(arr1,0,arr2,0,arr1.length);
for(int i=0;i