代码搜索结果
找到约 10,000 项符合
3 的代码
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];
% 部分并联后的状态空间,
f3_3.m
%线性调频信号
sig=fmlin(256);
%频率
f=0:0.05:0.5;
%时间
t=3:256;
%瞬时频率估计
ifr=instfreq(sig);
%群延迟估计
gd=sgrpdlay(sig,f);
%显示结果
plot(t,ifr','LineWidth',2);
hold on
plot(gd,f,'o--','LineWidth',2);
leg
main3_3a.cpp
// Section 7.3.3
// $ CC putval1.cpp main3_3a.cpp
/*
( 1 )< 23 >
( 2 )< 15, 5 >
*/
// defined in putval1.cpp
void putValues( int[], int size );
int main() {
int i = 23, j[ 2 ] = {
main3_3.cpp
// Section 8.3.3
// $ CC tracegcd.C main3_3.C
/*
depth #1
depth #2
depth #3
depth #4
gcd of (15,123): 3
*/
#include
using std::cout;
using std::endl;
// defined
pro3-3.jsp
An Include Test
The current date and time are
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