代码搜索:8×8点阵
找到约 10,000 项符合「8×8点阵」的源代码
代码结果 10,000
www.eeworm.com/read/360606/10085253
m 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
www.eeworm.com/read/360606/10085262
m 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
www.eeworm.com/read/360310/10103979
cpp 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(){}
};
www.eeworm.com/read/163970/10135846
h font8_8.h
/****************************************************************************************
* 文件名:FONT8_8.H
* 功能:8*8 ASCII码字体显示函数。(头文件)
* 作者:黄绍斌
* 日期:2004.02.26
* 备注:使用GUI_SetColor()函数设置前景颜色及背景色。
www.eeworm.com/read/163970/10135850
c font8_8.c
/****************************************************************************************
* 文件名:FONT8_8.C
* 功能:8*8 ASCII码字体及显示函数。
* 作者:黄绍斌
* 日期:2004.02.26
* 备注:使用GUI_SetColor()函数设置前景颜色及背景色。
****
www.eeworm.com/read/163777/10145823
m 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
www.eeworm.com/read/359245/10159299
m 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;
www.eeworm.com/read/163197/10171449
m 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(
www.eeworm.com/read/356085/10237390
m example8_8.m
%这里有一幅图像,如图8-27所示,其动态范围较小,而且较暗,反映在直方图上,见图8-28,
%就是其%直方图所占据的灰度值范围比较窄,而且集中在低灰度值一边。为了使图像更清晰,我们采用直方图
%均衡化的方法来增加图像灰度动态范围,增强对比度。在MATLAB中,可以直接调用J=histeq (I,n)
%函数来完成这项工作,其中I是原始图像矩阵,J是变换后所得的图像矩阵;用户可以指定均衡化
...