资源简介
C# 协同过滤 推荐引擎 实例源码
代码片段和文件信息
namespace org.apache.commons.math3.distribution
{
using org.apache.commons.math3.exception;
using org.apache.commons.math3.random;
using org.apache.commons.math3.util;
using System;
public abstract class AbstractIntegerDistribution
{
protected RandomGenerator random;
protected AbstractIntegerDistribution(RandomGenerator rng)
{
this.random = rng;
}
private double checkedCumulativeProbability(int argument)
{
double naN = double.NaN;
naN = this.cumulativeProbability(argument);
if (double.IsNaN(naN))
{
throw new Exception(“DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN“);
}
return naN;
}
public abstract dou
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 483 2015-05-24 18:35 .gitattributes
文件 2658 2015-05-24 18:35 .gitignore
目录 0 2015-05-24 18:35 ntaste\
文件 2509 2015-05-24 18:35 ntaste.sln
文件 282112 2015-05-24 18:35 ntaste.suo
目录 0 2015-05-24 18:35 ntaste.Test\
文件 184 2015-05-24 18:35 ntaste.Test\App.config
目录 0 2015-05-24 18:35 ntaste.Test\bin\
目录 0 2015-05-24 18:35 ntaste.Test\bin\Debug\
文件 24224 2015-05-24 18:35 ntaste.Test\bin\Debug\ntaste.Test.vshost.exe
目录 0 2015-05-24 18:35 ntaste.Test\datafile\
文件 210 2015-05-24 18:35 ntaste.Test\datafile\item.csv
文件 35655 2015-05-24 18:35 ntaste.Test\datafile\randomData.csv
文件 2796 2015-05-24 18:35 ntaste.Test\ntaste.Test.csproj
目录 0 2015-05-24 18:35 ntaste.Test\obj\
目录 0 2015-05-24 18:35 ntaste.Test\obj\Debug\
文件 0 2015-05-24 18:35 ntaste.Test\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
文件 0 2015-05-24 18:35 ntaste.Test\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
文件 0 2015-05-24 18:35 ntaste.Test\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
文件 5209 2015-05-24 18:35 ntaste.Test\Program.cs
目录 0 2015-05-24 18:35 ntaste.Test\Properties\
文件 1308 2015-05-24 18:35 ntaste.Test\Properties\AssemblyInfo.cs
文件 400896 2015-05-24 18:35 ntaste.v11.suo
文件 16367 2015-05-24 18:35 ntaste\ntaste.csproj
目录 0 2015-05-24 18:35 ntaste\org\
目录 0 2015-05-24 18:35 ntaste\org\apache\
目录 0 2015-05-24 18:35 ntaste\org\apache\commons\
目录 0 2015-05-24 18:35 ntaste\org\apache\commons\math3\
目录 0 2015-05-24 18:35 ntaste\org\apache\commons\math3\distribution\
文件 4447 2015-05-24 18:35 ntaste\org\apache\commons\math3\distribution\AbstractIntegerDistribution.cs
文件 9251 2015-05-24 18:35 ntaste\org\apache\commons\math3\distribution\PascalDistribution.cs
............此处省略197个文件信息
相关资源
- C#联通网络宽带测试 拨号
- C#百度指数抓取方法(2012年版本已失
- C# 隐藏某个磁盘分区
- C# 读取并编辑window系统的右键菜单
- C#自定义屏保(不断滚动的文字)
- C#winform打印指定区域 -控件拖动 -设置
- C#使用Hook进行改键
- 提供C#调用系统API函数弹出或收起光驱
- 通过C#自带的头文件(类)获取Windo
- C#获取电脑CPU以及内存使用率
- pop3lib类库 +(这个不错) 附完整
- 利用uu云打码平台的lib实现的c#打码平
- tf-idf一种计算方法
- C# pop3 邮件接收程序
- C# 邮件群发示例 源码下载18952
- 动态抓取IPC#实现
- XXTEA算法的C#实现和JS实现,可以互相
- C# 飞行棋 游戏源码(面向对象入门)
- 基于WinPcap的C# ARP欺骗软件().rar
- C#网络应用编程 矩阵并行计算练习
- 《C#版Ftp软件源码》
-
C# 播放铃声(AxWindowsMediaPla
yer)最新 - C# 把图片显示成椭圆形状
- C# 水平交错效果显示图像
- winform 浮雕效果的图像
- c# 底片效果显示图像就像旧式相机的
- 积木效果显示图像
- C# 隐形窗体 (没有边框,没有标题栏
- browerPhotoC#网页截图(不打开网页)
- C# 模拟时钟(自绘Graphics)
评论
共有 条评论