码迷,mamicode.com
首页 >  
搜索关键字:math    ( 11719个结果
学习Mahout (四)
在Mahout 学习(三)中,我贴了example的代码,里面生成向量文件的代码:InputDriver.runJob(input, directoryContainingConvertedInput, "org.apache.mahout.math.RandomAccessSparseVector...
分类:其他好文   时间:2014-07-19 14:14:04    阅读次数:218
POJ 1001 Exponentiation(JAVA,BigDecimal->String)
题目计算实数a的n次方,具体输出格式看案例import java.util.*;import java.math.*;public class Main { public static void main(String[] args) { Scanner in = new Sca...
分类:编程语言   时间:2014-07-18 21:06:14    阅读次数:198
Java的大数操作分为BigInteger和BigDecimal
Java的大数操作分为BigInteger和BigDecimal,但这两给类是分开使用的,有时候在编程的时候显得略微繁琐,现在编写了一个将二者合二为一的大数操作类。大数操作类代码如下: 1 package blog; 2 3 import java.math.BigDecimal; 4 i...
分类:编程语言   时间:2014-07-18 10:29:13    阅读次数:392
CodeForces114E——Double Happiness(素数二次筛选)
Double HappinessOn the math lesson a teacher asked each pupil to come up with his own lucky numbers. As a fan of number theory Peter chose prime numbe...
分类:移动开发   时间:2014-07-18 00:12:12    阅读次数:616
【python】升序查找100内最大平方数的方法
frommathimportsqrt#导入math模块中的sqrt函数(开平方) l=[]#定义一个空的列表l foriinrange(1,100): n=sqrt(i) ifn==int(n): l.append(i)#将平方数追加到l列表里 printl printmax(l)#方法一:取列表最大值 printl[len(l)-1]#方法二:取列表中的最后一个值即为最大 printl.p..
分类:编程语言   时间:2014-07-17 16:07:15    阅读次数:429
JavaScript加减计算方法和显示千分位
Math.formatFloat = function (f, digit) { var m = Math.pow(10, digit); return parseInt(f * m, 10) / m; };使用:var fe...
分类:编程语言   时间:2014-07-17 00:12:05    阅读次数:302
Flash 中与 JS 的通信
SetVariable 可以很方便的实现多浏览器兼容。举例如下。html 页中的 JavaScript 函数:function GetSwfUrl(){var pics1 = parseInt(Math.random()*5)+1;var pics2 = parseInt(Math.random()...
分类:Web程序   时间:2014-07-16 18:46:26    阅读次数:244
Math.round()、Math.ceil()、Math.floor()与Math.random()的区别?
Math.round(x) 四舍五入 加上0.5向下取整 Math.round(1.5) 2 Math.round(-11.5) -11 Math.round(-11.2) -10Math.ceil(x) 不小于x的最小整数 Math.ceil(1.5) 2 Math.ceil...
分类:其他好文   时间:2014-07-16 17:40:53    阅读次数:192
javascript篇:javascript对象——Math
Math对象用于执行数学任务,无需创建它的实例:var mathPI = Math.PI;var myVal = Math.sqrt(4);Math对象的属性E:返回算术常量e,约等于2.718LN2:返回2的自然对数,约等于0.693LN10:返回10的自然对数,约等于2.302LOG2E:返回以...
分类:编程语言   时间:2014-07-16 16:12:26    阅读次数:227
java 大数
hdu 1063 n^m舍去多余的0 1 import java.math.BigDecimal; 2 import java.math.BigInteger; 3 import java.util.Scanner; 4 5 6 public class Main { 7 public ...
分类:编程语言   时间:2014-07-16 15:48:40    阅读次数:266
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!