代码搜索:Spectrum
找到约 5,196 项符合「Spectrum」的源代码
代码结果 5,196
www.eeworm.com/read/287770/8670291
m at.m
function I = at(x,f)
% AT Return element index corresponding to a frequency value.
%
% I = AT(X,T) Return element index I at frequency location f in spectrum
% object X.
% $Id: at.m 119 2006-09-26
www.eeworm.com/read/287770/8670302
m extend.m
function y=extend(x)
% EXTEND Extend a spectrum object to cover the whole frequency range.
% $Id: extend.m 46 2004-08-26 11:48:36Z mairas $
% find out where the current spectrum points lie on the u
www.eeworm.com/read/287770/8670337
m sum.m
function b = sum(a)
% SUM Sum of spectrum elements
% B = SUM(A) returns the sum of spectrum elements.
% $Id: sum.m 109 2006-02-17 08:29:09Z mairas $
b = sum(a.s);
www.eeworm.com/read/287770/8670368
m eq.m
function c=eq(a,b)
% overloading of operator ==
% $Id: eq.m 31 2004-07-28 10:46:46Z mairas $
if ~(isa(a,'spectrum') & isa(b,'spectrum'))
error('Both operands must be spectrum objects');
end
try
www.eeworm.com/read/287770/8670440
m fft.m
function Y = fft(X,varargin)
% $Id: fft.m 53 2005-01-05 11:17:56Z mairas $
y = fft(X.s,varargin{:});
Y = spectrum(y,X.time.fs);
%warning('time data discarded');
www.eeworm.com/read/387424/8683890
lct mico8.lct
[Device]
Family = ep5a00;
PartNumber = LFE2-6E-7T144C;
Package = TQFP144;
PartType = LFE2-6E;
Speed = -7;
Operating_condition = COM;
Status = Production;
[Revision]
Parent = ep5a00.lci;
www.eeworm.com/read/387424/8684272
lci mico8.lci
[Device]
Family = ep5a00;
PartNumber = LFE2-6E-7T144C;
Package = TQFP144;
PartType = LFE2-6E;
Speed = -7;
Operating_condition = COM;
Status = Production;
[Revision]
Parent = ep5a00.lci;
www.eeworm.com/read/387125/8704284
asm vectors.asm
;
; Spectrum Digital Test code for EVM320C240
; Copyright (c) 1997.
; Spectrum Digital, Inc.
; ALL RIGHTS RESERVED
;
;
; RTXC assembly language code, vectors for test code on EVM320C2
www.eeworm.com/read/430527/8740593
m d_wig2.m
%D_WIG2 HOSA Demo of Wigner Spectrum (wig2 and wig2c)
%
echo off
% A. Swami Oct 18, 1997.
% Copyright (c) 1991-2001 by United Signals & Systems, Inc.
% $Revision: 1.6 $
%
www.eeworm.com/read/386083/8765200
m comp_exam3_1.m
fs = 1000; % sampling frequency
delt = 1/fs; % sampling increment
t = 0:delt:1-delt; % time vector
npts = length(t); % number of points
fn = (0:npts)-(fs/