码迷,mamicode.com
首页 >  
搜索关键字:math    ( 11719个结果
C语言学习 - 0006 行列式乘法
1 #include 2 #include 3 void main() 4 { 5 void read(int* m,int* n); 6 int* ptable(int m,int n); 7 int* math(int m1,int n1,int n2,int* num...
分类:编程语言   时间:2015-11-20 21:48:59    阅读次数:266
【C语言】【面试题】【笔试题】二维数组中的查找,杨氏矩阵
#define_CRT_SECURE_NO_WARNINGS1 #include<stdio.h> #include<stdlib.h> #include<math.h> #include<windows.h> intfind(intarr[],introws,intcolumns,intnum) { intfind=0; if(arr!=NULL&&rows>0&&columns>0) { introw=0; in..
分类:编程语言   时间:2015-11-20 00:19:36    阅读次数:257
Strong local nondeterminism for fBm
Let $B^\alpha$ be an $(N,1)$-fractional Brownian motion with index $\alpha\in(0,1).$ Pitt (Local times for Gaussian vector fields, Indiana Univ. Math....
分类:其他好文   时间:2015-11-19 23:57:12    阅读次数:289
jquery写的90度翻转
var box1,nx=180,rotXINT,xtop;var PI = Math.PI;function onBind(){ $('body').on('click','.box',function(){ var a = $(this).next().css('to...
分类:Web程序   时间:2015-11-19 20:56:46    阅读次数:170
JavaScript中的Math.ceil()、Math.round()、Math.floor()
1. Math.ceil():向上取整(指取大于该浮点数的最小整数)2. Math.round():四舍五入取整(注意:当该浮点数距离两端整数一样时,取较大的那个整数,如Math.round(-1.5)=-1)3. Math.floor():向下取整(指取小于该浮点数的最大整数)
分类:编程语言   时间:2015-11-19 10:54:25    阅读次数:145
Objective-C中math.h数学计算公式介绍
1、 三角函数double sin (double); 正弦double cos (double);余弦 double tan (double);正切2 、反三角函数 double asin (double); 结果介于[-PI/2, PI/2] double acos (double)...
分类:其他好文   时间:2015-11-18 10:40:46    阅读次数:127
js中with、this的用法
with 语句为一个或一组语句指定默认对象。用法:with () ;with 语句通常用来缩短特定情形下必须写的代码量。在下面的例子中,请注意 Math 的重复使用:x = Math.cos(3 * Math.PI) + Math.sin(Math.LN10);y = Math.tan(14 * M...
分类:Web程序   时间:2015-11-17 12:29:12    阅读次数:134
poj 1684 Lazy Math Instructor(字符串)
题目链接:http://poj.org/problem?id=1686思路分析:该问题为表达式求值问题,对于字母使用浮点数替换即可,因为输入中的数字只能是单个digit。代码如下:#include #include #include #include #include #include using ...
分类:其他好文   时间:2015-11-17 00:12:38    阅读次数:224
js中with、this的用法
with 语句 为一个或一组语句指定默认对象。用法:with () ;with 语句通常用来缩短特定情形下必须写的代码量。在下面的例子中,请注意 Math 的重复使用:x = Math.cos(3 * Math.PI) + Math.sin(Math.LN10); y = Math.tan(14 *...
分类:Web程序   时间:2015-11-17 00:06:13    阅读次数:198
类(字符串型;日期时间型;Math)
分类:其他好文   时间:2015-11-16 22:35:16    阅读次数:288
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!