代码搜索结果
找到约 10,000 项符合
1 的代码
ch11_1_1.htm
符号表示式
ch7_1_1.htm
一维内插
ch3_1_1.htm
横轴和纵轴的控制
ch9_1_1.htm
梯形法
ch5_1_1.htm
基本矩阵运算元
ch4_1_1.htm
常见数学函数
example6_1_1.m
%==========================================================================
% Name:example6_1_1.m
%
%==========================================================================
clear;close all,
exa1_46_1.m
% exa1-46_zero_pole_gain.m for example 1-46
% zero/pole gain
clear all;
b=[0.3 0.2]; %sytem parameter
a=[1 -0.4 -0.7]; %sytem parameter
zr=roots(b)
pk=roots(a)
g=b(1)/a(1)
exa1_49_1.m
% exa1-49_state_space_2nd_order_representaion.m for example 1-49
% from state-space to 2nd ordered representation
clear all;
b=[0.3 0.2]; %sytem parameter
a=[1 -0.4 -0.7]; %sytem parameter
[A,B
例6-1(1).m
%设定自变量数组t
t=[0:0.01:1.5];
%固定频率
w=4*sqrt(3);
%使用数组运算式
y= sqrt(3)/3*exp(-2*t).*sin(w*t+pi/6);
%绘制曲线并且加上坐标网格
subplot(2,1,1),plot(t,y),grid
%加标注
title('绘图示例'),x