代码搜索:COMPACT
找到约 3,584 项符合「COMPACT」的源代码
代码结果 3,584
www.eeworm.com/read/144351/12801294
m q811.m
%《MATLAB在电子信息课程中的应用》第八章例8.11程序q811
% 连续和离散系统的根轨迹绘制
% 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月
clear,clf
format compact
disp('先分析连续系统'),pause
s=tf(1,[1,12,30,50,0]) % 建立连续系统开环模型s
figure(1),rloc
www.eeworm.com/read/245201/12811020
c ch01.1.2.c
// #include
// using namespace std;
#include
/**
**
read()
sort()
compact()
write()
**
**/
void read() { cout
www.eeworm.com/read/331558/12821445
asv cnet.asv
function CNet(Net)
format compact
format long e
theta = linspace(0,2*pi,length(Net)+1);
xy = zeros(length(Net)+1,2);
x = cos(theta);
y = sin(theta);
xy(1:length(Net)+1,1) = x(1:length(Net)+1)
www.eeworm.com/read/331558/12821448
m cnet.m
function CNet(Net)
format compact
format long e
theta = linspace(0,2*pi,length(Net)+1);
xy = zeros(length(Net)+1,2);
x = cos(theta);
y = sin(theta);
xy(1:length(Net)+1,1) = x(1:length(Net)+1)
www.eeworm.com/read/141706/12990727
txt readme.txt
WinDriver is the leading driver development toolkit, designed to
enable you to create high performance PCI / Compact PCI / USB /
ISA / ISA PnP / EISA based device drivers for Windows 9x, NT/2000,
www.eeworm.com/read/140420/13082134
m modulatep.m
%产生调幅、调频及调相波形
clf;
%format,compact,
t=0:0.001:1;
A0=10;w0=100;phi0=0;
x=A0*sin(w0*t+phi0);
subplot(3,1,1),plot(t,x),hold
xlabel('t'),ylabel('载波信号')
%输入信号参数
dA=0;
dw=0;
dphi=5*sin(0.1*w0*t);
www.eeworm.com/read/140419/13082138
m modusqu.m
%产生调幅、调频及调相波形
clf;
%format,compact,
t=0:0.001:1;
A0=10;w0=200;phi0=0;
x=A0*square(w0*t+phi0);
subplot(3,1,1),plot(t,x),hold
axis([0,1,-12,12])
xlabel('t'),ylabel('载波信号')
%输入信号参数
dA=5*sin(0.1
www.eeworm.com/read/140418/13082142
m modulatef.m
%产生调幅、调频及调相波形
clf;
%format,compact,
t=0:0.001:1;
A0=10;w0=100;phi0=0;
x=A0*sin(w0*t+phi0);
subplot(3,1,1),plot(t,x),hold
xlabel('t'),ylabel('载波信号')
%输入信号参数
dA=0;
dw=5*sin(0.1*w0*t);
dphi=0;
www.eeworm.com/read/140417/13082150
m modulate.m
%产生调幅、调频及调相波形
clf;
%format,compact,
t=0:0.001:1;
A0=10;w0=200;phi0=0;
x=A0*sin(w0*t+phi0);
subplot(3,1,1),plot(t,x),hold
xlabel('t'),ylabel('载波信号')
%输入信号参数
dA=5*sin(0.1*w0*t);
dw=0;
dphi=0;