搜索结果
找到约 44 项符合
Circle 的查询结果
按分类筛选
- 全部分类
- Java编程 (7)
- matlab例程 (6)
- 其他 (3)
- 技术资料 (2)
- VC书籍 (2)
- 源码 (1)
- 书籍 (1)
- 单片机编程 (1)
- 数值算法/人工智能 (1)
- 通讯/手机编程 (1)
- 书籍源码 (1)
- 其他书籍 (1)
- Applet (1)
- 多国语言处理 (1)
- 文件格式 (1)
- 数学计算 (1)
- 技术管理 (1)
- 汇编语言 (1)
- 通讯编程文档 (1)
- 嵌入式/单片机编程 (1)
- 单片机开发 (1)
- uCOS (1)
- 数据结构 (1)
- Java书籍 (1)
- J2ME (1)
- Delphi/CppBuilder (1)
- 家庭/个人应用 (1)
- 软件设计/软件工程 (1)
- JavaScript (1)
数据结构 声明一个基类Shape(点), 在此基础上派生出Rectangle(长方形)和Circle(圆),这三个类都有GetArea()函数计算对象的面积,构造函数
声明一个基类Shape(点), 在此基础上派生出Rectangle(长方形)和Circle(圆),这三个类都有GetArea()函数计算对象的面积,构造函数,析构函数等有关函数。再使用Rectangle类创建一个派生类Square(正方形)。并设计创建各种类的对象,调用所有函数。设计函数f(Shape &a)能对不同对象的实参调用计算打印出对象的面积。 ...
matlab例程 Example - 3-D Stem Plot of an FFTFor example, fast Fourier transforms are calculated at points aroun
Example - 3-D Stem Plot of an FFTFor example, fast Fourier transforms are calculated at points around the unit circle on the complex plane. So, it is interesting to visualize the plot around the unit circle. Calculating the unit circle.
Java编程 (1) 实现一个Point类
(1) 实现一个Point类,该类包含表示坐标的两个int型变量x、y,构造方法Point()和Point(int xx, int yy),返回x值和y值的int getX()和int getY()方法,计算两点间距离的double distance(Point)方法。其中计算平方根用Math.sqrt()方法。
(2) 实现一个Circle类,该类包含表示圆心的Point型变量center,表示半径的int radius ...
源码 定个Circl
定义一个Circle,有数据成员radius(半径),设计带有默认参数值的构造函数,成员函数setCircle(),getArea(),计算圆的面积,构造一个Circle的对象进行测试。
matlab例程 This demo develops the steady-state characteristics of an induction motor First start the simulation
This demo develops the steady-state characteristics of an induction motor First start the simulation, then Double click the <PLOTS> block to view torque-speed and
current-speed curves and the current circle diagram
Java编程 生成指定点数的随机点
生成指定点数的随机点,并用两种不同的算法求出这些点的最小包围圆(Smallest Enclosing Circle),并比较结果
通讯编程文档 1. 定义时间类Time
1. 定义时间类Time,给出类的成员属性及构造函数、析构函数及普通方法的定义,利用定义的类定义对象,并对对象的属性进行访问;
2. 定义一个类Point,然后定义类Point的派生类Circle,再定义Circle的派生类Cylinder;
3. 通过函数参数类型的不同实现函数重载;
4. 函数模板的定义与使用。 ...
Java编程 (1) 编写一个代表圆柱体的Cylinder类
(1) 编写一个代表圆柱体的Cylinder类,该类是Circle类的子类。Cylinder类包括圆柱体的高度变量height以及计算圆柱体的体积方法volume()和计算表面积的方法surfaceArea()。
(2) 编写测试Cylinder类的CylinderTest类,并在该类得main方法中调用Cylinder类的相关方法。
(3) 重写Point和Circle类的equals()、toString()方 ...
uCOS 这是一个移植到vc上的小型ucGUI
这是一个移植到vc上的小型ucGUI,有助于容易理解GUI的实现和移植到嵌入式系统上,其中包括了Font,Widget,Window,Graphs(circle,line,poly,arc),LCDDriver,MemDev等。
数值算法/人工智能 使用lm算法对二维圆数据进行拟和
使用lm算法对二维圆数据进行拟和,其中test_circle用于生成测试数据 fit2dcircle用于拟和 document.doc对算法原理进行详细说明 程序使用bcc5.60编译通过