代码搜索:initial
找到约 10,000 项符合「initial」的源代码
代码结果 10,000
www.eeworm.com/read/272224/7096297
m vtb9_3.m
function z = VTB9_3(rkf,u,t,x0)
%VTB9_3 VTB9_3(rkf,u,t,x0)
% Runge-Kutta fourth order solution to a first order DE
% t is a row vector from the initial time to the final time
% ste
www.eeworm.com/read/272224/7096298
m vtb1_3.m
function z = VTB1_3(rkf,u,t,x0)
%VTB1_3 VTB1_3(rkf,u,t,x0)
% Runge-Kutta fourth order solution to a first order DE
% t is a row vector from the initial time to the final time
% ste
www.eeworm.com/read/272224/7096348
m vtb9_2.m
function [x,xd]=VTB9_2(n,dt,x0,xd0,a,b,c)
%VTB9_2 Finds the multiple degree of freedom system
% undamped response using Euler's method.
% x=VTB9_2(n,dt,x0,a) Solves the system given the
% in
www.eeworm.com/read/272224/7096356
m vtb1_2.m
function [x,xd]=VTB1_2(n,dt,x0,xd0,a,b,c)
%VTB1_2 Finds the multiple degree of freedom system
% unforced response using Euler's method.
% x=VTB1_2(n,dt,x0,a) Solves the system given the
% in
www.eeworm.com/read/400482/7103324
v loop3.v
module loop3;
integer i;
initial begin
i=0;
repeat(4)
begin
$display ("i=%h",i);
i=i+1;
end
end
endmodule
www.eeworm.com/read/400482/7103423
v adder_tp.v
`timescale 1ns/1ns
`include "adder4.v"
module adder_tp;
reg[3:0] a,b;
reg cin;
wire[3:0] sum;
wire cout;
integer i,j;
adder4 adder(sum,cout,a,b,cin);
always #5 cin=~cin;
initial
begin
www.eeworm.com/read/175270/7116991
h osconfig.h
/*
** File: osconfig.h
**
** Author: Alan Cudmore / Code 582
**
** Purpose: Contains configuration options for the OS
**
** $Revision: 1.6 $
**
** $Date: 2005/07/05 18:34:55 $
**
** $Log: osconfig.h
www.eeworm.com/read/464101/7169682
m m3.m
% M-file for Exercise 3 RL circuit simulation
% input parameters and initial conditions
R = 0.4; %R = 0.4 ohm
L = 0.04; %L = 0.04 Henry
we = 314; % excitation frequency in rad/sec
Vac_mag =
www.eeworm.com/read/462637/7198952
m ek1f.m
function [x,P]=ekf(fstate,x,P,hmeas,z,Q,R)
% EKF Extended Kalman Filter for nonlinear dynamic systems
% [x, P] = ekf(f,x,P,h,z,Q,R) returns state estimate, x and state covariance, P
% for nonlin