代码搜索:Digital
找到约 10,000 项符合「Digital」的源代码
代码结果 10,000
www.eeworm.com/read/186973/8887364
m c126.m
Wp=0.15;Ws=0.1;Gp=-1;Gs=-6.3;T=pi/100;
% Digital Highpass Butterworth
%[n,Wn]=buttord(Wp,Ws,-Gp,-Gs);
%[b,a]=butter(n,Wn,'high')
% Digital Highpass Cheby1
%[n,Wn]=cheb1ord(Wp,Ws,-Gp,-Gs);
%[b,a]=c
www.eeworm.com/read/186973/8887369
m c125.m
Wp=8/35;Ws=15/35;Gp=-2;Gs=-11;T=pi/35;
% Digital Lowpass Butterworth
[N,Wn]=buttord(Wp,Ws,-Gp,-Gs);
[b,a]=butter(N,Wn)
% Digital Cheby1
%[N,Wn]=cheb1ord(Wp,Ws,-Gp,-Gs);
%[b,a]=cheby1(N,-Gp,Wn)
%[
www.eeworm.com/read/186973/8887392
m c127.m
% Wp=[1000 2000];Ws=[450 4000]. Divide by normalizing factor pi/T=10^4 to obtain
% normalized values Wp=[0.1 0.2] and Ws=[0.045 0.4]. Also Gp=-2.1;Gs=-20.
Wp=[0.1 0.2];Ws=[0.045 0.4];Gp=-2.1;Gs=-20
www.eeworm.com/read/186973/8887394
m c128.m
% Ws=[1000 2000];Wp=[450 4000]. Divide by normalizing factor pi/T=10^4 to obtain
% normalized values Ws=[0.1 0.2] and Wp=[0.045 0.4]. Also Gp=-2.1;Gs=-20.
Ws=[0.1 0.2];Wp=[0.045 0.4];Gp=-2.1;Gs=-20
www.eeworm.com/read/284836/8888885
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/384009/8905970
h dm643_pci.h
/*
* Copyright 2003 by Spectrum Digital Incorporated.
* All rights reserved. Property of Spectrum Digital Incorporated.
*/
/*
* ======== dm643_pci.h ========
*
* Interface for PCI
www.eeworm.com/read/383468/8943665
java ledclock.java
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
//Fu Bin MSN:yonghe169@163.com
public class LedClock{
public static void main(String arg[]){
LedClockWindow ledClockWindow =
www.eeworm.com/read/427429/8945518
v de2_usb_api.v
// --------------------------------------------------------------------
// Copyright (c) 2005 by Terasic Technologies Inc.
// --------------------------------------------------------------------
/
www.eeworm.com/read/426467/9020160
m plot_signal.m
% Plot analag signal values
h1=subplot(3,1,1);
plot(analog.time,analog.signals.values,'b')
title('Analog Signal')
%xlabel('time(s)')
set(gca,'XTick',[]);
a=axis;
axis([a(1) a(2) -1.3 1.3]);
www.eeworm.com/read/185569/9031129
c dac0808_c.c
//Digital to Analog Converter,典型值 00H--0.0V 80H--2.5V FFH--4.98V
#include
#define uchar unsigned char
void delay(t)
{
while(t--);
}
void main(void)
{
while(1)