代码搜索:Num
找到约 10,000 项符合「Num」的源代码
代码结果 10,000
www.eeworm.com/read/439857/7700226
m m0715.m
% M0715 bodeͼ
num=[1,0,0.5];
den=[3,2,3,0,5];
w=logspace(-1,1,100);
bode(num,den,w)
www.eeworm.com/read/439857/7700232
m m0716.m
% M0716 bode图
num=[-1,0,3,0.5];
den=[2,3,3,0.5,1];
Nichols(num,den)
ngrid %添加Nichols方格
www.eeworm.com/read/439850/7700812
m chap3_1.m
%Expert PID Controller
clear all;
close all;
ts=0.001;
sys=tf(5.235e005,[1,87.35,1.047e004,0]);
dsys=c2d(sys,ts,'z');
[num,den]=tfdata(dsys,'v');
u_1=0.0;u_2=0.0;u_3=0.0;
y_1=0;y_2=0;y_3=0
www.eeworm.com/read/439811/7701430
m ip_07_11.m
% MATLAB script for Illustrative Problem 11, Chapter 7
clear
echo on
num=[0.01 1];
den=[1 1.01 1];
[a,b,c,d]=tf2ss(num,den);
dt=0.01;
u=ones(1,2000);
x=zeros(2,2001);
for i=1:2000
x(:,i+1)
www.eeworm.com/read/439785/7701727
lua snakearrange.lua
--[[
文件名:snakeArrange.lua
功能描述:该文件通过函数snakeArrange()实现蛇行编排功能。
文件中使用的参数members、nos、num都是从Java中传入,为全局变量。
members为参赛成员ArrayList,nos为编排后的对阵ArrayList,num为编排后分成的小
www.eeworm.com/read/439785/7701728
lua line.lua
---------------------------------------------------------------------------------
function line( members, nos, num )
l = luajava.newInstance("java.util.ArrayList")
--对阵编排
for i=0,
www.eeworm.com/read/439785/7701731
lua consolation1.lua
--[[
文件名:consolation.lua
功能描述:该文件通过函数consolation()实现落选赛编排功能。
文件中使用的参数members、nos、num都是从Java中传入,为全局变量。
members为参赛成员ArrayList,nos为编排后的对阵ArrayList,
www.eeworm.com/read/439680/7703225
m chap3_1.m
%Expert PID Controller
clear all;
close all;
ts=0.001;
sys=tf(5.235e005,[1,87.35,1.047e004,0]);
dsys=c2d(sys,ts,'z');
[num,den]=tfdata(dsys,'v');
u_1=0.0;u_2=0.0;u_3=0.0;
y_1=0;y_2=0;y_3=0
www.eeworm.com/read/439490/7707694
c sinhtu.c
/* Bai tap 1_101 - Chuong trinh sinh tu ngau nhien */
#include
#include
#define MAX 7
#define NUM 100
void main()
{
int i, n, k;
char s[MAX+1];
randomize()
www.eeworm.com/read/439446/7708507
m p7_1.m
% Program P7_1
% Design of a Butterworth Bandstop Digital Filter
Ws = [0.4 0.6]; Wp = [0.2 0.8]; Rp = 0.4; Rs = 50;
% Estimate the Filter Order
[N1, Wn1] = buttord(Wp, Ws, Rp, Rs);
% Design the Filte