搜索结果
找到约 975 项符合
TA-F 的查询结果
Java编程 实现一个类
实现一个类,描述二维平面的直线Line。
描述属性:私有属性
&#61550 直线所通过的点:Point p;
&#61550 直线的斜率:double m
实现方法:
&#61550 直线的构建;
&#61550 返回直线的两个属性;
&#61550 返回直线在Y轴上的截距:yIntercept ;
&#61550 判断两条直线是否相等;
&#61550 显示直线的内容:y = mx + b
& ...
数学计算 关于FORTRAN的常用算法
关于FORTRAN的常用算法,对于F的爱好者有很大的帮助。
其他书籍 This book is the most accurate and up-to-date source of information the STL currently available. ...
This book is the most accurate and up-to-date source of information the STL currently available. ... It has an approach and appeal of its own: it explains techniques for building data structures and algorithms on top of the STL, and in this way appreciates the STL for what it is - a framework. Angel ...
Linux/Unix编程 这是LInux下C语言开发的推箱子游戏。对学习curese编程的人有帮助 用了大量的Curese函数
这是LInux下C语言开发的推箱子游戏。对学习curese编程的人有帮助
用了大量的Curese函数,此游戏可建立关卡。默认有10关。
作者
/* File: tuixiangzi.c */
Makefile如下:
all: tuixiangzi
tuixiangzi: tuixiangzi.c
gcc -o tuixiangzi tuixiangzi.c -lcurses
clean:
rm -f tuixiangzi *.bak ...
人工智能/神经网络 对比分类器的测试数据和输出结果
对比分类器的测试数据和输出结果,给出Precsion,Recall和F-Measure
Linux/Unix编程 This book is intended for embedded system programmers, consultants and students interested in real-t
This book is intended for embedded system programmers, consultants and students interested in real-time operating
systems. μC/OS-II is a high performance, deterministic real-time kernel and can be embedded in commercial products
(see Appendix F, Licensing). Instead of writing your own kernel, you s ...
其他 php开发的行业搜索系统!!! 2. 安装 ------------ a. 解压程序rar文件
php开发的行业搜索系统!!!
2. 安装
------------
a. 解压程序rar文件,用二进制方式上传到你的网站的根目录或某一目录下
注意:一定要将ftp上传工具设置为二进制方式,再上传程序文件
b. unix或linux服务器下, 将以下文件属性改为:666 (或777)
- function/base_info.php
- function/emphasis_info.php
- f ...
单片机开发 LCD-7279的经过调试多次已经能够实现在指定的位置显示特定的数据。 程序lcd1.c实现基本的功能
LCD-7279的经过调试多次已经能够实现在指定的位置显示特定的数据。
程序lcd1.c实现基本的功能,即:键盘输入0、1、2、3、4、5、6、7、8、9、a\b\c\d\e\f 在液晶的指定位置显示实现满屏或半屏显示点阵和字符,调入一幅图画的代码进行显示; ...
matlab例程 最小二乘曲面拟合程序(m文件)
最小二乘曲面拟合程序(m文件),对一组三维数据z=f(x,y)拟合,成为关于x和y的多项式
matlab例程 五对角占优线性方程组求解的MATLAB 程序MYLU。 输入参数A为系数矩阵
五对角占优线性方程组求解的MATLAB 程序MYLU。
输入参数A为系数矩阵,F为右端向量。输出参数L,U为A的LU 分解A=LU,X为解向量。