代码搜索结果
找到约 10,000 项符合
8 的代码
exam_8_8.cfg
-$A8
-$B-
-$C+
-$D+
-$E-
-$F-
-$G+
-$H+
-$I+
-$J-
-$K-
-$L+
-$M-
-$N+
-$O+
-$P+
-$Q-
-$R-
-$S-
-$T-
-$U-
-$V+
-$W-
-$X+
-$YD
-$Z1
-cg
-AWinTypes=Windows;WinProcs=Windows;Dbi
ex8_8.m
%
% This program generates an impedance transformation
% plot in the Smith Chart as described in Example 8-8
%
% Copyright (c) 1999 by P.Bretchko and R.Ludwig
% "RF Circuit Design: Theo
fig8_8.m
%
% This program generates an impedance transformation
% plot for the circuits shown in Figure 8-8 (b) and (c)
%
% Copyright (c) 1999 by P.Bretchko and R.Ludwig
% "RF Circuit Design: The
l8_8.cpp
#include
class A
{
private:
int a;
public:
virtual void func(){}
};
class B : public A
{
private:
int b;
public:
virtual void func(){}
virtual void func1(){}
};
font8_8.h
/****************************************************************************************
* 文件名:FONT8_8.H
* 功能:8*8 ASCII码字体显示函数。(头文件)
* 作者:黄绍斌
* 日期:2004.02.26
* 备注:使用GUI_SetColor()函数设置前景颜色及背景色。
font8_8.c
/****************************************************************************************
* 文件名:FONT8_8.C
* 功能:8*8 ASCII码字体及显示函数。
* 作者:黄绍斌
* 日期:2004.02.26
* 备注:使用GUI_SetColor()函数设置前景颜色及背景色。
****
text8-8.htm
Untitled Document
program_8_8.m
% Program 8_8
% Simulation of IIR Cascaded Lattice Structure
%
k =3D input('Type in the lattice multiplier coefficients =3D ');
alpha =3D input('Type in the feed-forward multiplers =3D ');
x =3D
exa8_8.m
% exa080501_sigdec.m ,for example 8.5.1
% to dectect signal from noise
clear;
% 产生数据
N=128;
n=0:N-1;
f1=0.10;
f2=0.19;
A1=1;
A2=3;
s1=A1*cos(2*pi*f1*n);
s2=A2*cos(2*pi*f2*n);
s=s1+s2;
example8_8.m
% 求解最优控制器
a=2;b=1;c=1;d=0;
Q=[1000,0;0,1];R=1;
A=[a,0;-c*a,1];
B=[b;-c*b];
Kx=dlqr(A,B,Q,R)
k1=-Kx(2);k2=Kx(1);
axc=[(a-b*k2),b*k1;(-c*a+c*b*k2),(1-c*b*k1)];
bxc=[0;1];cxc=[1,0];dxc=0;
dstep(