代码搜索结果
找到约 10,000 项符合
3 的代码
ch3_3.m
G=tf([1 5],[1 2 3 0]);
rlocus(G)
grid
figure
bode(G)
grid
figure
nyquist(G)
grid
figure
Gc=feedback(G,1)
step(Gc)
grid
例3-3.m
[u,v]=dsolve('Du=6*u+3*v','Dv=3*u+9*v')
[u,v]=dsolve('Du=6*u+3*v','Dv=3*u+9*v','u(0)=0','v(0)=1')
condvar3_3.c
/*
* File: condvar3_3.c
*
*
* --------------------------------------------------------------------------
*
* Pthreads-win32 - POSIX Threads Library for Win32
* Copyright(C) 1998 John
exp3_3.m
clc
clear
a1=[1 4 4;2 2 1;3 6 2];
b1=[0 1 0;1 0 0;0 0 1];
c1=[0 0 1;0 1 1];d1=[0 1 0;1 0 1];
a2=[1 -1 0;3 -2 1;1 6 -1];
b2=[1 0 0;0 1 0;0 0 1];
c2=[0 1 0;1 0 1];d2=[1 1 0;1 0 1];
% 部分并联后的状态空间,
chap3_3.m
%Fuzzy Controller
clear all;
close all;
a=newfis('fuzzf');
f1=1;
a=addvar(a,'input','e',[-3*f1,3*f1]); %Parameter e
a=addmf(a,'input',1,'NB','zmf',[-3*f1,-1*f1]);
a=addmf(a,'inpu
p3_3.cpp
/**********************************
* p3_3.cpp *
* 用for语句计算1+3+,...,+99 *
***********************************/
#include
using namespace std;
void main()
{