搜索结果
找到约 145 项符合
math 的查询结果
按分类筛选
- 全部分类
- 嵌入式Linux (14)
- 其他书籍 (13)
- 数学计算 (10)
- matlab例程 (9)
- 编译器/解释器 (7)
- 单片机开发 (7)
- 数值算法/人工智能 (6)
- 其他 (6)
- Java编程 (6)
- VC书籍 (5)
- 软件工程 (4)
- 单片机编程 (3)
- 电子书籍 (3)
- 数据结构 (3)
- 加密解密 (3)
- 书籍源码 (3)
- 源码 (3)
- 测试测量 (2)
- 游戏 (2)
- 人工智能/神经网络 (2)
- Delphi/CppBuilder (2)
- DSP编程 (2)
- 汇编语言 (2)
- 微处理器开发 (2)
- 文章/文档 (2)
- 嵌入式/单片机编程 (2)
- JavaScript (2)
- 技术资料 (2)
- 电源技术 (1)
- 通讯/手机编程 (1)
- 操作系统开发 (1)
- Delphi控件源码 (1)
- 中间件编程 (1)
- 其他行业 (1)
- Java书籍 (1)
- 通讯编程文档 (1)
- Linux/Unix编程 (1)
- FlashMX/Flex源码 (1)
- 文件格式 (1)
- Jsp/Servlet (1)
- Applet (1)
- Matlab (1)
- 源码/资料 (1)
- 习题答案 (1)
- VIP专区 (1)
- 精品软件 (1)
其他 #include <stdio.h> #include <string.h> #include <stdlib.h> #include <malloc.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <malloc.h>
#include <math.h>
#include <conio.h>
struct DuLNode{
struct DuLNode *prior
int data
struct DuLNode *next
VC书籍 我收藏的c語言900個例題
我收藏的c語言900個例題,裡頭有控制dos-bios,memory,macros,math....的一些範例,原碼可能很簡單但是很實用,希望大家喜歡
数学计算 用PHP编写的表达式计算器
用PHP编写的表达式计算器,是用的编译的知识实现的,并非使用eval()函数实现。
功能强大,可以做所有的数值计算,代数计算还不能实现。
1。可以计算形如“-3*sin(2^0.5/2+3.1415)-pi()^2”的式子。
2。能识别数字(包括小数、正负数)、数学函数。
3。可以做加、减、乘、除、指数、取模 计算(其中加、减包括一元和二元两 ...
数学计算 第1章 TURBO PASCAL高级编程技术 1.1 单元及其使用 1.2 与汇编语言混合编程 1.3 与C语言混合编程 1.4 过程类型及其使用 1.5 中断例程的编写方法
第1章 TURBO PASCAL高级编程技术
1.1 单元及其使用
1.2 与汇编语言混合编程
1.3 与C语言混合编程
1.4 过程类型及其使用
1.5 中断例程的编写方法
1.6 动态数组及其使用
1.7 扩充内存(EMS)及其使用
1.8 扩展内存(XMS)及其使用
1.9 程序的标准数据作代码处理的方法
第2章 实用工具单元
2.1 屏幕输入与输出单元ACRT ...
其他书籍 The ability to write efficient, high-speed arithmetic routines ultimately depends upon your knowled
The ability to write efficient, high-speed arithmetic routines ultimately depends
upon your knowledge of the elements of arithmetic as they exist on a computer. That
conclusion and this book are the result of a long and frustrating search for
information on writing arithmetic routines for real-time ...
其他 As all of you know, MATLAB is a powerful engineering language. Because of some limitation, some task
As all of you know, MATLAB is a powerful engineering language. Because of some limitation, some tasks take very long time to proceed. Also MATLAB is an interpreter not a compiler. For this reason, executing a MATLAB program (m file) is time consuming. For solving this problem, Mathworks provides us ...
单片机开发 ead file "YD.DOC". Who is the intended user Beginners in assembly and programmers. Features o
ead file "YD.DOC".
Who is the intended user
Beginners in assembly and programmers.
Features of the program:
Yilmaz Disassembler:is an interactive disassembler which lets the user be a part of the disassembling process,is flexible, the user can disassemble in different formats,has user friendly i ...
数据结构 #include<malloc.h> #include<limits.h> #include<stdio.h> #include<graphics.h&
#include<malloc.h>
#include<limits.h>
#include<stdio.h>
#include<graphics.h>
#include<io.h>
#include<math.h>
#include<process.h>
#include<conio.h>
#define m 100
#define OK 1
typedef int Status
typedef char TElemType /*树元素的类型*/
int t=35
int n=20
int h=14
int u=2
int leaf=0,non_l_leaf=0,non ...
书籍源码 很好的一本工具书
很好的一本工具书,提供了C/C++函数查询,分为以下几个方面阐述,预处理命令、关键字、标准C的I/O,String,Charactor,Math,Time,Data,Memory,以及C++的I/O,String,及标准模版类。推荐。
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 ...