代码搜索:Rectangular
找到约 1,427 项符合「Rectangular」的源代码
代码结果 1,427
www.eeworm.com/read/288303/8643983
m amrect.m
function y = amrect(N,t0,T);
%AMRECT Generate rectangular amplitude modulation.
% Y = AMRECT(N,T0,T) generates a rectangular amplitude modulation
% centered on a time T0, and with a spread proportion
www.eeworm.com/read/431671/8662558
m amrect.m
function y = amrect(N,t0,T);
%AMRECT Generate rectangular amplitude modulation.
% Y = AMRECT(N,T0,T) generates a rectangular amplitude modulation
% centered on a time T0, and with a spread proportion
www.eeworm.com/read/430031/8771757
m fig3_33.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Figure 3.33
% Beam patterns for various windows
% N = 11
% Xin Zhang 3/23/99
% K. Bell 9/14/00, K. Bell 7/22/01, 9/30/01
% Function called:
www.eeworm.com/read/426516/9016430
m amrect.m
function y = amrect(N,t0,T);
%AMRECT Generate rectangular amplitude modulation.
% Y = AMRECT(N,T0,T) generates a rectangular amplitude modulation
% centered on a time T0, and with a spread proportion
www.eeworm.com/read/185455/9036987
m amrect.m
function y = amrect(N,t0,T);
%AMRECT Generate rectangular amplitude modulation.
% Y = AMRECT(N,T0,T) generates a rectangular amplitude modulation
% centered on a time T0, and with a spread proportion
www.eeworm.com/read/381211/9103771
m fg_05_06.m
% fg_05_06 Window functions.
N=31; beta=2*sqrt(2)*pi;
name=str2mat('Rectangular (Boxcar)','Hamming','Blackman','Kaiser');
sp_fig(1);
w=[boxcar(N),hamming(N),blackman(N),kaiser(N,beta)];
clr=['r'
www.eeworm.com/read/381211/9104023
m fg_05_07.m
% fg_05_07 Window power spectra.
N=31; dB0=-120; beta=2*sqrt(2)*pi;
name=str2mat('Rectangular (Boxcar)','Hamming','Blackman','Kaiser');
nu=linspace(0,.5,500);
sp_fig(1,9,6);
w=[boxcar(N),hamming
www.eeworm.com/read/184196/9117734
m amrect.m
function y = amrect(N,t0,T);
%AMRECT Generate rectangular amplitude modulation.
% Y = AMRECT(N,T0,T) generates a rectangular amplitude modulation
% centered on a time T0, and with a spread proportion
www.eeworm.com/read/183081/9179426
txt new text document.txt
This code is a translation of Basic Language FFT code found in the online book 'The Scientist and Engineer's Guide to Digital Signal Processing'(www.DSPguide.com).
This code uses 3dNow! Instruction
www.eeworm.com/read/175308/9552677
ex-09-04
// Example 09-04: Rectangular arrays
namespace Programming_CSharp
{
using System;
public class Tester
{
static void Main()
{
const int rows = 4;
c