家庭邮箱 家庭网络工具箱,主要用于组建家庭关联时的一些调试,检测,压测工具。 测试端需要使用现代新版浏览器,例如Chrome / Firefox等。如果测速的是高速网络,请尝试保证机器CPU性能足够强大 特征 面向未来浏览器设计 高达10G的浏览器速度测试 自带Ping检测 丰富的自定义测速参数 服务端无需固态要求 友好的UI互动 针对低速网络(<2.5G)优化测速资源占用 截屏 安装 码头工人 首先你需要一个台服务器,只要能支持安装Docker即可,某些群辉,FreeNas,unRaid,CentOS等等,暂时只支持x86服务器。 安装并启动xgheaven/homebox镜像,默认情况下暴露的端口是3300然后在浏览器中输入。 http://server.ip:3300即可,如果重映射了端口,请输入映射后的端口 二进位 直接在下载对应版本即可。 解压之后直接执行编译好的二进制文件即可。
2022-04-29 22:45:58 269KB home network speedtest homebox
1
Wavelet Neural Network.zip,这是一份不错的文件
2022-04-29 13:00:36 3KB 综合资源 文档
在我们生活的世界中,每一个人以及每一个事物相互之间都存在着关系,有直接关系,也有间接关系,最终会形成一个无形的大的关系网。network模块是一个用python语言开发的图论和复杂网络建模工具,模块内置了常用的图与复杂网络分析算法。 network模块有四种图:Graph、DiGraph、MultiGraph、MultiDigraph,分别为无多重边无向图、无多重边有向图、有多重边无向图、有多重边有向图。其中Graph是用点和线来刻画离散事物集合中,每对事物间以某种方式相联系的数学模型。 下面我们来分析《复仇者联盟4》人物关系: import pandas as pd #导入绘图模块 imp
2022-04-28 19:21:04 180KB net OR w
1
python网络编程基础 Foundations_of_Python_Network_Programming_Second_Edition
2022-04-27 21:30:25 3.19MB python
1
用于网络共享USB设备,USB共享(USB-Over-Network)5.02带注册码
2022-04-27 10:05:13 8.72MB USB共享 Over-Network 注册码
1
Complex Networks Toolbox for MatLab is designed to analyze large-scale graphs, model them, explore with simulations of dynamic processes and generate appealing and insightful layouts. example: function [BetweenneessCentrality, varargout]= GraphBetweennessCentrality(Graph,SourceNodes) % Computes betweenneess centrality of each node. % % Receives: % Graph - Graph Struct - the graph loaded with GraphLoad % SourceNodes - array of double - (optional) nodes, from which passes start. Default: [] (all nodes). % % Returns: % BetweenneessCentrality - array of double - Betweenneess Centrality for each node. % Nodes - array of double - (optional)List of all nodes for which betweennessn centrality is computed % % Algorithm: % http://www.boost.org/libs/graph/doc/betweenness_centrality.html % % See Also: % mexGraphAllNodeShortestPasses % warning('Use the more optimized mexGraphBetweennessCentrality.dll'); error(nargchk(1,2,nargin)); error(nargoutchk(0,2,nargout)); if ~exist('SourceNodes') | isempty(SourceNodes) SourceNodes = unique(Graph.Data(:,1)); end Nodes = unique(Graph.Data(:,1:2)); %TotalPasses = zeros(GraphCountNumberOfNodes(Graph),GraphCountNumberOfNodes(Graph)); Betweenness = zeros(GraphCountNumberOfNodes(Graph),1); for Node = Nodes(:).' [ShortesPasses PassesHistogram]= mexGraphAllNodeShortestPasses(Graph,Node); %TotalPasses = TotalPasses + sum(PassesHistogram(2:end)); tic for i = 1 : numel(ShortesPasses) %T = ShortesPasses(i).Passes(end); %TotalPasses(Node,ShortesPasses(i).Passes(end)) = size(ShortesPasses(i).Passes,2); % compute total number of shortes passes from Node to some other node. Passes = ShortesPasses(i).Passes(2:end-1,:); NodesOnTheWay = unique(Passes); if numel(NodesOnTheWay)==1 Count = 1; % hist behaves differently in this case. else Count = hist(Passes(:),NodesOnTheWay);
2022-04-26 20:46:45 24.47MB 复杂网络 连锁故障
1
information theory
2022-04-26 18:43:15 3.88MB information
1
目录 1 Market Drivers for IPv6 Adoption 2 Hierarchical Network Design 3 Common IPv6Coexistence Mechanisms 4 Network Services 5 Planning an IPv6 Deployment 6 Deploying IPv6in Campus Networks 7 Deploying VirtualizedIPv6 Networks 8 Deploying IPv6 inWAN/Branch Networks 9 Deploying IPv6in the Data Center 10 Deploying IPv6in the Data Center 11 Deploying IPv6in the Data Center 12Walk Before Running: Buildingan IPv6 Lab and Starting a Pilot
2022-04-25 20:04:06 4.22MB IPv6
EvoFuzzy 这是用于调整模糊推理系统的的非常简单的Python实现。 要求 已知依赖项: Python(3.5.5) 脾气暴躁(1.14.2) Matplotlib(2.2.2) 要安装依赖项,请cd到存储库的目录并运行pip install -r requirements.txt 代码结构 anfis.py :包含python ANFIS实现。 diffevo.py :包含差异进化算法的python实现(基于)。 fobj.py :包含几个目标函数。 mackey.py :包含一个示例,该示例使用差异演化来调整ANFIS以预测Mackey Glass系列。 本示例在序列的1500个点上训练系统,并绘制实际序列与预测序列的关系图。 要运行示例,请cd到存储库的目录并运行python mackey.py 去做: 实现除高斯人以外的成员资格功能。 实施其他进化算法来
1