代码搜索:2
找到约 10,000 项符合「2」的源代码
代码结果 10,000
www.eeworm.com/read/172061/7074728
m dxz2_2.m
clear;global M r q p u g lemda;
M=2000;
lemda=0.3;
r=[9.6 18.5 49.4 23.9 8.1 14 40.7 31.2 33.6 36.8 11.8 9 35 9.4 15 5]'/100;
q=[42 54 60 42 1.2 39 68 33.4 53.3 40 31 5.5 46 5.3 23 0]'/100;
p=[2.
www.eeworm.com/read/222631/7092592
m chap2_2.m
%Delay Control with Dalin Algorithm
clear all;
close all;
ts=0.5;
%Plant
sys1=tf([1],[0.4,1],'inputdelay',0.76);
dsys1=c2d(sys1,ts,'zoh');
[num1,den1]=tfdata(dsys1,'v');
%Ideal closed loop
www.eeworm.com/read/272224/7096341
m vtb2_2.m
function VTB2_2(m,c,k,wdr,F0,tf)
%VTB2_2 Particular solution of an underdamped single degree of freedom system.
% VTB2_2(m,c,k,wdr,F0,tf) plots the response of an underdamped single
% degree of freedo
www.eeworm.com/read/415937/7097434
htm ._listing2-2.htm
www.eeworm.com/read/348430/7108210
~2~ project2.dpr.~2~
library Project2;
{ Important note about DLL memory management: ShareMem must be the
first unit in your library's USES clause AND your project's (select
Project-View Source) USES clause if yo
www.eeworm.com/read/348430/7108212
~2~ unit2.pas.~2~
unit Unit2;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm2 = class(TForm)
Label1: TLabel;
private
www.eeworm.com/read/245198/7123974
m exp2_2.m
% exp2_2.m --- 学习非线性方程组 F(X) = 0 数值求根命令fsolve
% [调用方法] X = fsolve(F,X0)
% 这里 F 是向量函数(就是方程组),X0 是迭代初值(向量)
% [注] 该命令采用优化方法求解,默认的是一维搜索法
function study_fsolve
% 下面仅以一个例子说明其使用
www.eeworm.com/read/352774/7131519