hypercube

杉岩数据荣膺全球云计算大会“云鼎奖”

柔情痞子 提交于 2020-08-12 15:51:38
近日,第八届全球云计算大会·中国站(Cloud Connect China)在宁波举行。全球云计算大会创办于美国硅谷,被评为全球十大云计算盛会之一。“云鼎奖”作为大会重量级活动及亮点,如同云计算开源领域的“奥斯卡”,旨在表彰年度对中国云计算产业做出突出贡献和具有创新精神的集体、个人和产品。 本届“云鼎奖”,经过大会组委会与独立第三方研究机构、产业联盟、行业协会、专业媒体等评审委员会的严格审核,杉岩数据凭借在软件定义存储领域的产品表现和抗击疫情中的突出贡献,在本届“云鼎奖”中荣膺“2020云计算抗疫先锋企业奖”。 2020年,疫情突袭,特殊时期改变了全球人民的生活方式。在此期间,国家鼓励在保障精准防控的同时,提倡智慧医疗、在线教育、远程办公等措施以保障各行各业正常开展工作,云计算发挥了重要的技术角色。 杉岩数据积极响应政府号召,利用多年的企业级服务经验和远程运维产品能力,疫情期间免费提供云服务产品、云服务的咨询及规划服务,并为新冠定点医院免费赠送统一存储平台软件SandStone USP和医疗云基础设施设备,与各行各业用户共同战“疫”,帮助数十家单位解决疫情期间数据存储问题。 杉岩统一存储平台软件SandStone USP采用分布式的软件定义存储架构,充分利用服务器计算资源和存储资源,满足高可扩展、高性能、高可靠以及数据存储、分析、处理、共享的需求。 医疗云基础设施设备融合计算虚拟化

SVG图像展示工具 Hypercube

 ̄綄美尐妖づ 提交于 2020-07-26 23:22:18
Hypercube是一款跨平台的 SVG 图像展示开源工具。支持Window, Linux, 以及Mac OS平台。拥有基于QT编写的用户界面,目标是便携性和易于使用性。同时也可以是命令行形式的工具。采用模拟退火算法(simulated annealing algorithm)的布局图,可以很容易地参数进行调整,来达到所需的外观。命令行工具可以不依赖其他的库,独立运行。 相关文件下载地址 本地直接下载 来源: oschina 链接: https://my.oschina.net/u/4257044/blog/4284345

Hypercube with multidimensional vectors

梦想的初衷 提交于 2019-12-30 07:32:10
问题 I'm trying to implement a hypercubeclass, that is, multidimensional vectors. I have a problem generalizing it. I'm able to make one for a three dimensional hypercube, but as mentioned, the problem is generalizing it. Could anyone help me? You should be able to write hypercube<4> w(5) to get 4 dimensions and 5 elements in each vector that is 5*5*5*5 elements in total. Here is the code I have for the three dimensional version: #include <vector> using std::vector; using namespace std; template

4D to 3D perspective projection

自闭症网瘾萝莉.ら 提交于 2019-12-19 11:26:20
问题 Im trying to calculate the position of 4D point in 3D world. I started with 2D and tried to extend it to the 3D and then to 4D. Firstly, I found out that its easy to calculate the projected position of 2D point on the line. Whoops, there should be () in the first equation: x/(a+y) Now I figured out that the same will apply in the 3D world if I split the P(X,Y,Z) to the P1(X,Z) and P2(Y,Z), calcualte their Q and then build a point of P'(Q1,Q2) (Assuming Im looking Z axis positive infinity from

C++ How to generate the set of cartesian product of n-dimensional tuples

≯℡__Kan透↙ 提交于 2019-12-07 05:33:59
问题 I wish to generate some data that represents the co-ordinates of a cloud of points representing an n-cube of n dimensions. These points should be evenly distributed throughout the n-space and should be able to be generated with a user-defined spacing between them. This data will be stored in an array. 回答1: I have found an implementation of a cartesian product using Boost.MPL. There is an actual Cartesian product in Boost as well but that is a preprocessor directive, I assume it is of no use

Hadoop Hypercube

风格不统一 提交于 2019-12-06 11:56:30
问题 Hey, i am starting a hadoop based hypercube with a flexible number of dimensions. Does anybody know any existing approaches for this? I just found PigOLAPSketch, but there is no code to use it. Another approach is Zohmg from lastfm, which uses hbase, but seems to be very dead. I think i will start a pig solution, maybe you have some advices? 回答1: This would be very cool/useful. OpenTSDB is an HBase time-series database that might be interesting to look at, they have a clever approach to

Hadoop Hypercube

回眸只為那壹抹淺笑 提交于 2019-12-04 17:09:44
Hey, i am starting a hadoop based hypercube with a flexible number of dimensions. Does anybody know any existing approaches for this? I just found PigOLAPSketch , but there is no code to use it. Another approach is Zohmg from lastfm, which uses hbase, but seems to be very dead. I think i will start a pig solution, maybe you have some advices? This would be very cool/useful. OpenTSDB is an HBase time-series database that might be interesting to look at, they have a clever approach to secondary indexing. You can also look at gpu based database https://www.kinetica.com/ but this is not open

4D to 3D perspective projection

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-01 12:05:46
Im trying to calculate the position of 4D point in 3D world. I started with 2D and tried to extend it to the 3D and then to 4D. Firstly, I found out that its easy to calculate the projected position of 2D point on the line. Whoops, there should be () in the first equation: x/(a+y) Now I figured out that the same will apply in the 3D world if I split the P(X,Y,Z) to the P1(X,Z) and P2(Y,Z), calcualte their Q and then build a point of P'(Q1,Q2) (Assuming Im looking Z axis positive infinity from C(0,-a) point and rendering to the XY plane). nx = (a*x)/(a+z); ny = (a*y)/(a+z); Then I thought its

Hypercube with multidimensional vectors

二次信任 提交于 2019-12-01 00:41:37
I'm trying to implement a hypercubeclass, that is, multidimensional vectors. I have a problem generalizing it. I'm able to make one for a three dimensional hypercube, but as mentioned, the problem is generalizing it. Could anyone help me? You should be able to write hypercube<4> w(5) to get 4 dimensions and 5 elements in each vector that is 5*5*5*5 elements in total. Here is the code I have for the three dimensional version: #include <vector> using std::vector; using namespace std; template <int b> class Hypercube { public: Hypercube(int a) : intvec(a){ for (int i = 0; i<a;i++) { intvec[i]