代码搜索:4
找到约 10,000 项符合「4」的源代码
代码结果 10,000
www.eeworm.com/read/343627/3218203
tim 4e-4.tim
#
# 4e-4.tim
#$Header: /syn/cvs/rcs/mappers/xilinx/lib/4e-4.tim,v 1.2 1999/07/29 23:40:49 naresh Exp $
#
@EN#0s00_OVD_HRDC
0#CRNVlbC_8D3R.(C
#0sbNllRVN8b_CfDRVblN_D8C
0#CblNsRlVEN8b_CcDR3#(
CN
www.eeworm.com/read/343627/3218366
tim 4k-4.tim
#
# 4k-4.tim
#$Header: /syn/cvs/rcs/mappers/xilinx/lib/4k-4.tim,v 1.1.1.1 1999/05/22 02:18:01 george Exp $
#
@EN#0s00_OVD_HRDC
0#CRNVlbC_8D3RcjC
#0sbNllRVN8b_CfDRVblN_D8C
0#CblNsRlVEN8b_CnDR3#j
www.eeworm.com/read/338783/3312958
eps at4fig4.eps
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: MATLAB graph
%%CreationDate: 08/08/96 09:44:43
%%DocumentFonts: Times-Roman
%%DocumentNeededFonts: Times-Roman
%%Document
www.eeworm.com/read/334933/3360437
m p4_4.m
% Program P4_4
% Stability Test
clf;
den = input('Denominator coefficients = ');
ki = poly2rc(den);
disp('Stability test parameters are');
disp(ki);
www.eeworm.com/read/334933/3360510
m p4_4.m
% Program P4_4
% Stability Test
clf;
den = input('Denominator coefficients = ');
ki = poly2rc(den);
disp('Stability test parameters are');
disp(ki);
www.eeworm.com/read/334933/3360584
m p4_4.m
% Program P4_4
% Stability Test
clf;
den = input('Denominator coefficients = ');
ki = poly2rc(den);
disp('Stability test parameters are');
disp(ki);
www.eeworm.com/read/322960/3519402
c 例4-4.c
/* Note:Your choice is C IDE */
#include
#include
main()
{
int graphdriver=DETECT;
int graphmode,x;
initgraph(&graphdriver,&graphmode,"");
cleardevice();
ellipse(
www.eeworm.com/read/315275/3622031
m fig4_4.m
% Use this program to reproduce Fig 4.4 of text
close all
clear all
eps = 0.0001;
taup = 2.;
fd = -10./taup:.05:10./taup;
uncer = abs( sinc(taup .* fd));
ambg = uncer.^2;
plot(fd, ambg,'k')
x
www.eeworm.com/read/310846/3689574
c 例4-4.c
/* 直到型循环结构示例 */
#include
void main()
{
char ch;
char buf[256];
char *p;
printf("Input a string.\n"); // 读取字符串
scanf("%s", buf);
p = buf;
do
{
ch = *p; //