代码搜索:CLOSE
找到约 10,000 项符合「CLOSE」的源代码
代码结果 10,000
www.eeworm.com/read/439653/7704057
m exp4_6_.m
clc
clear
close all
%系统传递函数为G(s)=1/[(s^2+0.1s+5)(s^3+2s^2+3s+4)]
num=1;
den=conv([1 0.1 5],[1 2 3 4]);
%绘制系统的阶跃响应曲线
t=0:0.1:40;
y=step(num,den,t);
t1=0:1:40;
y1=step(num,den,t1);
plot(t,y,'
www.eeworm.com/read/439653/7704059
m exp4_19.m
%零极点图的绘制
clc
clear
close all
%已知系统的状态空间描述模型
a=[0 3;-3 -1];
b=[0 1]';
c=[1 3];d=2;
[p1,z1]=pzmap(a,b,c,d)
subplot(221)
pzmap(p1,z1)
subplot(222)
pzmap(a,b,c,d)
%已知系统传递函数模型
num=[2 25 51 10
www.eeworm.com/read/439584/7705498
txt 书内源码_11.txt
《Java就业培训教程》 作者:张孝祥 书中源码
《Java就业培训教程》P374源码
发送程序:UdpSend.java
import java.net.*;
public class UdpSend
{
public static void main(String [] args) throws Exception
{
DatagramSocket ds=new Da
www.eeworm.com/read/439580/7705617
java jdbc1.java
import java.sql.*;
public class JDBC1{
public static void main(String[] args){
Connection connect=null;
Statement st=null;
ResultSet rset=null;
try{
Class.forName("sun.j
www.eeworm.com/read/439580/7705889
java pwriter1.java
import java.io.*;
public class PWriter1{
public static void main(String[] args) throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
PrintWriter pw
www.eeworm.com/read/439271/7713135
m chap8_1plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,3),'b');
xlabel('time(s)');ylabel('Position tracking');
figure(2);
plot(t,u(:,1),'r');
xlabel('time(s)');ylabel('Control input');
www.eeworm.com/read/439271/7713151
m qftdm2_plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('Position tracking');
figure(2);
plot(t,u(:,1),'r');
xlabel('time(s)');ylabel('Control input');
figure(3);
www.eeworm.com/read/439271/7713154
m qft_int.m
% G and F design for QFT
clear all;
close all;
% Controller
k=800;
z=150;
p=50000;
G=tf(k*[1/z,1],[1/p,1]);
[numG,denG]=tfdata(G,'v');
% Filter
k=1;
p=150;
F=tf(k,[1/p,1]);
[numF,denF
www.eeworm.com/read/439271/7713157
m qft_plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('Position tracking');
figure(2);
plot(t,u(:,1),'r');
xlabel('time(s)');ylabel('Control input');
figure(3);