代码搜索:Math
找到约 10,000 项符合「Math」的源代码
代码结果 10,000
www.eeworm.com/read/111805/15503048
java testshapelist.java
// Chapter 6 Exercise 3
// Tests the operation of the ShapeList class.
public class TestShapeList {
public static void main(String args[]) {
ShapeList shapes = null; // Stores
www.eeworm.com/read/111805/15503055
java rectangle.java
// Chapter 6 Exercises 1 & 2
public class Rectangle extends Shape {
// Bottom right of rectangle is defined relative to the reference point, position:
private Point bottomRight; // Bot
www.eeworm.com/read/111805/15503057
java testshapes.java
// Chapter 6 Exercise 1
public class TestShapes {
public static void main(String args[]) {
Shape[] shapes = new Shape[10]; // Define an array of shapes.
Point[] pts = null;
www.eeworm.com/read/111805/15503058
java testshapelist.java
// Chapter 6 Exercise 2
// Tests the operation of the ShapeList class:
public class TestShapeList {
public static void main(String args[]) {
ShapeList shapes = null; // Stores a
www.eeworm.com/read/111324/15514558
~jav bpnet.~jav
import java.util.Random;
public class BpNet extends Object {
int inNum; //输入接点数
int hideNum;//隐含接点数
int outNum; //输出接点数
Random R;
int epochs;
double x[]; //输入向量
double
www.eeworm.com/read/111324/15514559
~jav rbfnet.~jav
public class RbfNet extends Object {
int inNum; //输入接点数
int hideNum;//隐含接点数
int outNum; //输出接点数
double c[][];//重心
double d[];//距离(歪)
int epochs;
double x[]; //输入向量
www.eeworm.com/read/111324/15514563
java bpnet.java
import java.util.Random;
public class BpNet extends Object {
int inNum; //输入接点数
int hideNum;//隐含接点数
int outNum; //输出接点数
Random R;
int epochs;
double x[]; //输入向量
double
www.eeworm.com/read/111324/15514568
java rbfnet.java
public class RbfNet extends Object {
int inNum; //输入接点数
int hideNum;//隐含接点数
int outNum; //输出接点数
double c[][];//重心
double d[];//距离(歪)
int epochs;
double x[]; //输入向量
www.eeworm.com/read/110935/15522849
java thunder.java
import java.applet.*;
import java.awt.*;
public class Thunder extends Applet implements Runnable
{
private Thread thread = null;
private boolean no_thunder = true;
private boolean thunder =
www.eeworm.com/read/110725/15526912
java clipimage.java
import javax.swing.*;
import java.awt.*;
import java.awt.geom.*;
import java.awt.event.WindowEvent;
import java.awt.event.WindowListener;
import java.awt.event.WindowAdapter;
import java.awt.ima