代码搜索:Step
找到约 10,000 项符合「Step」的源代码
代码结果 10,000
www.eeworm.com/read/475305/6795983
m print2.m
k=100;
m1=0.02;m2=0.0005;
b1=410e-03;b2=4.1e-03;
t=[0:0.001:1.5];
A=[0 0 1 0;0 0 0 1;-k/m1 k/m1 -b1/m1 0;k/m2 -k/m2 0 -b2/m2];
B=[0;0;1/m1;0];C=[0 0 0 1];D=[0];
y=step(A,B,C,D,1,t);
plot(t,y),g
www.eeworm.com/read/475315/6796211
m che1.m
clear all
pack
global ee n alpha dx0 h gamma
ee=0.01;
n=0.6;
alpha=0.32;
dx0=0.66;
h=3.6;
gamma=2/8.944;
step=2*pi/8.944/20;
t=0:step:1000;
x01=-0.02899486874725;
x02=0.004620
www.eeworm.com/read/473082/6855187
java alganimframe.java
/* AlgAnimFrame.java */
import java.awt.*;
import java.applet.*;
import java.io.*;
import java.net.*;
/**
* The AlgAnimFrame class is a top-level window with a title
* and border. The
www.eeworm.com/read/473082/6855213
java alganimframe.java
/* AlgAnimFrame.java */
import java.awt.*;
import java.applet.*;
import java.io.*;
import java.net.*;
public class AlgAnimFrame extends Frame {
AlgAnimApp parentApp;
URL sourceURL;
Strin
www.eeworm.com/read/473082/6855237
java alganimframe.java
/* AlgAnimFrame.java */
import java.awt.*;
import java.applet.*;
import java.io.*;
import java.net.*;
public class AlgAnimFrame extends Frame {
AlgAnimApp parentApp;
URL sourceURL;
Strin
www.eeworm.com/read/473179/6857507
txt 三角形.txt
#include
struct point{double x,y;};
struct line{point a,b;};
double distance(point p1,point p2){
return sqrt((p1.x-p2.x)*(p1.x-p2.x)+(p1.y-p2.y)*(p1.y-p2.y));
}
point intersection(
www.eeworm.com/read/473191/6857906
txt 三角形.txt
#include
struct point{double x,y;};
struct line{point a,b;};
double distance(point p1,point p2){
return sqrt((p1.x-p2.x)*(p1.x-p2.x)+(p1.y-p2.y)*(p1.y-p2.y));
}
point intersection(
www.eeworm.com/read/472660/6873142
c md5.c
/*
* MD5 hash implementation and interface functions
* Copyright (c) 2003-2005, Jouni Malinen
*
* This program is free software; you can redistribute it and/or modify
* it un
www.eeworm.com/read/194516/8191501
m dwindow.m
function Dh=dwindow(h);
%DWINDOW Derive a window.
% DH=DWINDOW(H) derives a window H.
%
% Example :
% plot(dwindow(tftb_window(210,'hanning')))
%
% See also WINDOW.
% F. Auger, August 1994, July 19
www.eeworm.com/read/193786/8204846
cpp md5.cpp
/*
* This code implements the MD5 message-digest algorithm.
* The algorithm is due to Ron Rivest. This code was
* written by Colin Plumb in 1993, no copyright is claimed.
* This code is in the pub