代码搜索结果
找到约 10,000 项符合
7 的代码
ex7_7.txt
Example 7.7 ServiceLocator.java: Implementing JMS Queue Service Locator Strategy
package com.corej2eepatterns.servicelocator;
// imports
public class ServiceLocator {
. . .
public
ex7_7.m
a=[1,2,-2;1,1,1;2,2,1];
b=[9;7;6];
[x,n]=jacobi(a,b,[0;0;0])
[x,n]=gauseidel(a,b,[0;0;0])
ex7_7.m
%%%%%%%%%%%%%%%%%% Example 7.7 %%%%%%%%%%%%%%%%%%
% Discrete-Time Control Problems using %
% MATLAB and the Control System Toolbox %
% by J.H. Chow, D.K. Frederick, & N.W. Chbat
reinf7_7.m
%%%%%%%%%%% Reinforcement Problem 7.7 %%%%%%%%%%%
% Discrete-Time Control Problems using %
% MATLAB and the Control System Toolbox %
% by J.H. Chow, D.K. Frederick, & N.W. Chbat
samp7_7.m
%Samp7_7
clf;N=1000;Fs=1000; %数据总数和采样频率
fc=200;
n=[0:N-1];t=n/Fs; %时间序列
f1=50;f2=250;
x=sin(2*pi*f1*t)+sin(2*pi*f2*t); %输入信号
b=fir1(40,fc*2/Fs); %设计40阶的低通滤波器,归一化截止频率据6-19式
file7-7.txt
Save this line for later
Save this line too
7-7.php3
Figure 7-7
algo7-7.cpp
// algo7-7.cpp 实现算法7.16的程序
#define MAX_NAME 5 // 顶点字符串的最大长度+1
#define MAX_INFO 20 // 相关信息字符串的最大长度+1
typedef int VRType;
typedef char VertexType[MAX_NAME];
typedef char InfoType;
#include"
example7_7a.m
% 比例控制
G=tf(1,[1 3 3 1]);P=[0.1:0.1:1];
for i=1:length(P)
G_c=feedback(P(i)*G,1);
step(G_c),hold on
end