资源简介
Hadoop mapreduce 实现MatrixMultiply矩阵相乘
代码片段和文件信息
#include
#include
#include
#include
#include
using namespace std;
//usage: argv[1] is the rows of the matrix M argv[2] is the columns of the matrix M argv[3] is the columns of the matrix N
int main(int argc char* argv[])
{
int rowcolumncolumnB;
sscanf(argv[1]“%d“&row);
sscanf(argv[2]“%d“&column);
sscanf(argv[3]“%d“&columnB);
FILE *fp;
stringstream ss;
ss << “M_“;
ss << row;
ss << “_“;
ss < fp = fopen(ss.str().c_str()“w“);
printf(“matrix M %d%d \n“rowcolumn);
srand(time(NULL));
for(int i =1; i <= row; i++)
{
for(int j = 1; j <= column; j++)
{
fprintf(fp“%d%s%d%s%d%s“i““j“\t“rand()%100“\n“);
}
}
fclose(fp);
FILE *fp2;
stringstream ss2;
s
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-07-31 19:43 CH 8.2 - MatrixMultiply\
文件 6849 2014-07-31 19:41 CH 8.2 - MatrixMultiply\README.html
文件 871 2014-07-31 19:41 CH 8.2 - MatrixMultiply\README.md
目录 0 2014-07-31 19:43 CH 8.2 - MatrixMultiply\src\
文件 1159 2014-07-31 19:45 CH 8.2 - MatrixMultiply\src\genMatrix.cpp
文件 467 2014-07-31 15:57 CH 8.2 - MatrixMultiply\src\genMatrix.sh
文件 5137 2014-07-24 10:47 CH 8.2 - MatrixMultiply\src\MatrixMultiply.java
相关资源
- Hadoop大数据处理技术基础与实践(第
- 基于hadoop的网盘程序
- 云计算Hadoop的系统架构及相关应用
- 计算机大三 大数据期末考试必备复习
- hadoop官方中文文档
- 30个数据可视化超级工具
- 基于ubuntu安装Hadoop详细过程
- hadoop官方文档
- Hadoop测试题
- Hadoop mapreduce 实现InvertedIndexer倒排索引
-
深入学习hba
se原理资料整理 - 2.6.1hadoop windows编译后的bin和native
- 软件工程课程设计报告Hadoop配置
- hadoop用户流量分析系统原始数据
- 《hadoop权威指南》第二章的气象数据
- 操作系统实验_多线程实现矩阵相乘
- taxi数据分析可视化
- hadoop2.9.1对应的hadoop.dllwinutils.exe
- Apache Ambari2.6.2.2版本汉化包及其他版本
- hadoop-common-2.7.1-bin-master
- hadoop2.7.1 windows7 32 位 hadoop.dll winut
- NaiveBayesClassify朴素贝叶斯分类法-Map
- apache-hadoop-3.1.0-winutils-master.7z
- hadoop2.7-common-bin
- ncdc气象数据集
- hadoop.dll-and-winutils.exe-for-hadoop2.7.7-on
- 《R与Hadoop大数据分析实战》源码
- libhdfs.so.zip
- hadoop-windows
- Hadoop基础面试题附答案
评论
共有 条评论