function A=hminired(A) %HMINIRED Initial reduction of cost matrix for the Hungarian method. % %B=assredin(A) %A - the unreduced cost matris. %B - the reduced cost matrix with linked zeros in each row. % v1.0 96-06-13. Niclas Borlin, niclas@cs.umu.se. [m,n]=size(A); % Subtract column-minimum values from each column. colMin=min(A); A=A-colMin(ones(n,1),:); % Subtract row-minimum values from each row. rowMin=min(A')'; A=A-rowMin(:,ones(1,n)); % Get positions of all zeros. [i,j]=find(A==0); % Extend A to give room for row zero list header column. A(1,n+1)=0; for k=1:n % Get all column in this row. cols=j(k==i)'; % Insert pointers in matrix. A(k,[n+1 cols])=[-cols 0]; end

时间: 2024-02-16 18:01:18 浏览: 161
这部分代码实现了对代价矩阵的约化。先对每一列减去其最小值,再对每一行减去其最小值。这样约化后的矩阵中至少有一个元素为 0。接下来,找到所有为 0 的元素的位置,对于每一行,在矩阵的最后一列新增一个指针,指向该行中所有为 0 的元素所在的列。这样,在匈牙利算法中寻找增广路径时,只需要遍历每一行中所有指向未匹配列的指针,找到增广路径的起点。
相关问题

PCX1 = 1.5482 $Shape factor Cfx for longitudinal force PDX1 = 1.1632 $Longitudinal friction Mux at Fznom PDX2 = -0.11154 $Variation of friction Mux with load PDX3 = 0.94173 $Variation of friction Mux with camber squared PEX1 = 0.27 $Longitudinal curvature Efx at Fznom PEX2 = 0.011693 $Variation of curvature Efx with load PEX3 = 0.053303 $Variation of curvature Efx with load squared PEX4 = 0.59223 $Factor in curvature Efx while driving PKX1 = 32.9102 $Longitudinal slip stiffness Kfx/Fz at Fznom PKX2 = 12.7911 $Variation of slip stiffness Kfx/Fz with load PKX3 = -0.11254 $Exponent in slip stiffness Kfx/Fz with load PHX1 = -0.0017527 $Horizontal shift Shx at Fznom PHX2 = 0.00068824 $Variation of shift Shx with load PVX1 = 0.068079 $Vertical shift Svx/Fz at Fznom PVX2 = 0.0023429 $Variation of shift Svx/Fz with load PPX1 = -0.8733 $linear influence of inflation pressure on longitudinal slip stiffness PPX2 = 0.7035 $quadratic influence of inflation pressure on longitudinal slip stiffness PPX3 = -0.0080216 $linear influence of inflation pressure on peak longitudinal friction PPX4 = -0.47776 $quadratic influence of inflation pressure on peak longitudinal friction RBX1 = 18.3369 $Slope factor for combined slip Fx reduction RBX2 = 18.2559 $Variation of slope Fx reduction with kappa RBX3 = 607.8133 $Influence of camber on stiffness for Fx combined RCX1 = 0.96372 $Shape factor for combined slip Fx reduction REX1 = -1.2699 $Curvature factor of combined Fx REX2 = -0.14323 $Curvature factor of combined Fx with load RHX1 = 0.0037359 $Shift factor for combined slip Fx reduction帮我做成表格

| 参数 | 值 | | --- | --- | | PCX1 | 1.5482 | | PDX1 | 1.1632 | | PDX2 | -0.11154 | | PDX3 | 0.94173 | | PEX1 | 0.27 | | PEX2 | 0.011693 | | PEX3 | 0.053303 | | PEX4 | 0.59223 | | PKX1 | 32.9102 | | PKX2 | 12.7911 | | PKX3 | -0.11254 | | PHX1 | -0.0017527 | | PHX2 | 0.00068824 | | PVX1 | 0.068079 | | PVX2 | 0.0023429 | | PPX1 | -0.8733 | | PPX2 | 0.7035 | | PPX3 | -0.0080216 | | PPX4 | -0.47776 | | RBX1 | 18.3369 | | RBX2 | 18.2559 | | RBX3 | 607.8133 | | RCX1 | 0.96372 | | REX1 | -1.2699 | | REX2 | -0.14323 | | RHX1 | 0.0037359 |

function Selected_Data_Index = BPLSH(Data,M,L,W) %----------Data Reduction----------% %Normalizing the data between 0 and 1 maximum = max(Data(:,1:end-1)); %找出Data第一列到倒数第二列,每一列元素的最大值 minimum = min(Data(:,1:end-1)); maxmin = maximum-minimum; maxmin(maxmin==0) = 1; Data(:,1:end-1) = (Data(:,1:end-1) - minimum)./maxmin; % ./ 一一对应相除 %将Data 第一列 到 倒数第二列所有行的元素赋值 Dimension = size(Data(:,1:end-1),2); % Number of features M; % Number of hash functions in each table L; % Number of hash tables W; % Bucket size %s = rng; %Reset Random Number Generator 重置随机数生成器 a = normrnd(0,1, [M*L , Dimension]); %生成M*L?Dimension的随机矩阵,每个元素都是从均值为0,标准差为1的正态分布中随机生成 %# Generate a in floor((ax+b)/W) b = W.*rand(M*L,1); % Generate b in floor((ax+b)/W) %生成M*L行1列伪随机数 % Calculating the buckets of samples % disp('Bucket Assigning'); Bucket_Index_Decimal_All = int32(zeros(L,size(Data(:,1:end-1),1))); 解释一下

该函数的功能是进行数据降维,使用了基于局部敏感哈希(BPLSH)的方法。 下面是对函数中代码的解释: 1. 对数据进行归一化,将所有特征值缩放到0和1之间。 2. 定义了三个参数:M表示每个哈希表中的哈希函数数量,L表示哈希表数量,W表示哈希桶大小。 3. 生成随机数矩阵a和b,用于哈希函数的计算。其中a是一个M*L行,每行包含Dimension个元素的矩阵,每个元素都是从均值为0,标准差为1的正态分布中随机生成的。b是一个M*L行,每行只有一个元素,这个元素是从0到W之间的随机整数。 4. 计算数据样本的哈希桶索引。对于每个样本,使用M个哈希函数将其映射到M个哈希桶中,并将这M个哈希桶的索引值连接起来作为该样本在一个哈希表中的索引。最终得到一个L行,每行包含所有样本在该哈希表中的索引值的向量。这个向量中的每个元素是一个十进制整数,表示样本在对应哈希桶中的索引。 5. 将所有样本在L个哈希表中的哈希桶索引值合并,得到一个L*实例数的矩阵Bucket_Index_Decimal_All。其中每一列是一个实例在L个哈希表中的哈希桶索引值。 6. 返回Bucket_Index_Decimal_All。
阅读全文

相关推荐

Create a class called Rational for performing arithmetic with fractions. Use integer variables to represent the private data of the class – the numerator and the denominator. Provide a constructor that enables an object of this class to be initialized when it’s declared. The constructor should store the fraction in reduced form. For example, the fraction would be stored in the object as 1 in the numerator and 2 in the denominator. In order to compute the reduced form, you need to write a reduction function which uses the Euclidean algorithm to get the greatest common divisor (GCD) of the numerator and denominator first and then divides GCD to get the reduced numerator and denominator. Provide public member functions that perform each of the following tasks:(a) (5%) Subtract a Rational number from the other Rational number. The result should be stored in reduced form. (b) (5%) Divide a Rational number by the other Rational number. The result should be stored in reduced form. (c) (5%) Print Rational numbers in the form a/b, where a is the numerator and b is the denominator. (d) (5%) Compare two Rational numbers to make sure which one is smaller or they are equal. (1 for the first number, 2 for the second number and 0 if they are equal) Please also write a main function to prompt the user to input two Rational numbers (5%). Subtract one number from the other from these two numbers using (a) and then print the result using (c). Divide one number from the other from these two numbers using (b) and then print the result using (c). Compare these two Rational numbers using (d) and indicate which one is smaller or they are equal. 用c++寫,並用using namespace std;

翻译This SiO2 shell is a key component in the mechanism for reversible actuation, as illustrated by finite element analysis (FEA) in Fig. 1C. An increase in temperature transforms the SMA (nitinol) from the martensitic to the austenitic phase, causing the 3D structure to flatten into a 2D shape. The responses of the SMA elements at the joints act as driving forces to deform the PI skeleton. This process also elastically deforms the SiO2 shell, resulting in a counter force that limits the magnitude of the deformation. The change in shape ceases when the forces from the shell balance those from the joints (right frame in Fig. 1C). Upon a reduction in temperature, the SMA changes from the austenitic back to the martensitic phase, thereby reducing the force produced by the SMA at the joints to zero. The elastic forces associated with the shell then push the entire system back to the original 3D geometry (left frame in Fig. 1C). Figure S3A simulates the moments generated by the SMA and the SiO2 shell. In the FEA model, the SiO2 shell appears on both the outer and inner surfaces of the 3D robot, consistent with experiments (fig. S3B). Although a single layer of the SiO2 shell at the outer or inner surface can also provide restoring force, the double-layer shell structure follows naturally from the conformal deposition process. This actuation scheme allows for reversible shape transformations using a one-way shape memory material. Without the shell, the structure only supports a single change in shape, from 3D to 2D, as illustrated in fig. S3C. Figure 1D shows optical images of a freestanding 3D peekytoe crab on the edge of a coin, highlighting the preserved 3D geometry enabled by the SiO2 shell after release from the elastomer substrate. Other 3D structures in geometries that resemble baskets, circular helices, and double-floor helices also exhibit high shape storage ratios (>85%) after cycles of heating and cooling (fig. S4). This ratio (s) is defined as s = 1 − |L1 − L0|/L0 × 100%, where L0 and L1 are the distances between the bonding sites at both ends at the initial stage and subsequent stages, respectively

class DownConv(nn.Module): def __init__(self, seq_len=200, hidden_size=64, m_segments=4,k1=10,channel_reduction=16): super().__init__() """ DownConv is implemented by stacked strided convolution layers and more details can be found below. When the parameters k_1 and k_2 are determined, we can soon get m in Eq.2 of the paper. However, we are more concerned with the size of the parameter m, so we searched for a combination of parameter m and parameter k_1 (parameter k_2 can be easily calculated in this process) to find the optimal segment numbers. Args: input_tensor (torch.Tensor): the input of the attention layer Returns: output_conv (torch.Tensor): the convolutional outputs in Eq.2 of the paper """ self.m =m_segments self.k1 = k1 self.channel_reduction = channel_reduction # avoid over-parameterization middle_segment_length = seq_len/k1 k2=math.ceil(middle_segment_length/m_segments) padding = math.ceil((k2*self.m-middle_segment_length)/2.0) # pad the second convolutional layer appropriately self.conv1a = nn.Conv1d(in_channels=hidden_size, out_channels=hidden_size // self.channel_reduction, kernel_size=self.k1, stride=self.k1) self.relu1a = nn.ReLU(inplace=True) self.conv2a = nn.Conv1d(in_channels=hidden_size // self.channel_reduction, out_channels=hidden_size, kernel_size=k2, stride=k2, padding = padding) def forward(self, input_tensor): input_tensor = input_tensor.permute(0, 2, 1) x1a = self.relu1a(self.conv1a(input_tensor)) x2a = self.conv2a(x1a) if x2a.size(2) != self.m: print('size_erroe, x2a.size_{} do not equals to m_segments_{}'.format(x2a.size(2),self.m)) output_conv = x2a.permute(0, 2, 1) return output_conv

大家在看

recommend-type

航空发动机缺陷检测数据集VOC+YOLO格式291张4类别.7z

数据集格式:Pascal VOC格式+YOLO格式(不包含分割路径的txt文件,仅仅包含jpg图片以及对应的VOC格式xml文件和yolo格式txt文件) 图片数量(jpg文件个数):291 标注数量(xml文件个数):291 标注数量(txt文件个数):291 标注类别数:4 标注类别名称:[“crease”,“damage”,“dot”,“scratch”] 更多信息:blog.csdn.net/FL1623863129/article/details/139274954
recommend-type

数字低通滤波器的设计以及matlab的实现

一个关于数字低通滤波器的设计以及matlab的相关实现描述,不错的文档
recommend-type

【微电网优化】基于粒子群优化IEEE经典微电网结构附matlab代码.zip

1.版本:matlab2014/2019a,内含运行结果,不会运行可私信 2.领域:智能优化算法、神经网络预测、信号处理、元胞自动机、图像处理、路径规划、无人机等多种领域的Matlab仿真,更多内容可点击博主头像 3.内容:标题所示,对于介绍可点击主页搜索博客 4.适合人群:本科,硕士等教研学习使用 5.博客介绍:热爱科研的Matlab仿真开发者,修心和技术同步精进,matlab项目合作可si信
recommend-type

收放卷及张力控制-applied regression analysis and generalized linear models3rd

5.3 收放卷及张力控制 收放卷及张力控制需要使用 TcPackALv3.0.Lib,此库需要授权并安装: “\BeckhoffDVD_2009\Software\TwinCAT\Supplement\TwinCAT_PackAl\” 此库既可用于浮动辊也可用于张力传感器,但不适用于主轴频繁起停且主从轴之间没有缓 冲区间的场合。 5.3.1 功能块 PS_DancerControl 此功能块控制从轴跟随 Dancer 耦合的主轴运动。主轴可以是实际的运动轴,也可以是虚拟 轴。功能块通过 Dancer-PID 调节主轴和从轴之间的齿轮比实现从轴到主轴的耦合。 提示: 此功能块的目的是,依据某一 Dancer 位置,产生一个恒定表面速度(外设速度)相对于主 轴速度的调节量。主轴和从轴之间的张力可以表示为一个位置信号(即 Dancer 位置信号)。 功能块执行的每个周期都会扫描实际张力值,而其它输入信号则仅在 Enable 信号为 True 的第一个周期读取。
recommend-type

谷歌Pixel5基带xqcn文件

资源说明; 完好机备份的基带qcn文件 请对照型号下载 下载后解压 可以解决常规更新降级刷第三方导致的基带丢失。 会使用有需要的友友下载,不会使用的请不要下载 需要开端口才可以写入,不会开端口的请不要下载 希望我的资源可以为你带来帮助 谢谢 参考: https://blog.csdn.net/u011283906/article/details/124720894?spm=1001.2014.3001.5502

最新推荐

recommend-type

学生信息管理系统-----------无数据库版本

学生信息管理系统-----------无数据库版本。资源来源于网络分享,如有侵权请告知!
recommend-type

2024年福建省村级(居委会)行政区划shp数据集

2024年福建省村级(居委会)行政区划shp数据集 坐标系:WGS1984
recommend-type

win32汇编环境,对话框中显示bmp图像文件

win32汇编环境,对话框中显示bmp图像文件
recommend-type

GitHub Classroom 创建的C语言双链表实验项目解析

资源摘要信息: "list_lab2-AquilesDiosT"是一个由GitHub Classroom创建的实验项目,该项目涉及到数据结构中链表的实现,特别是双链表(doble lista)的编程练习。实验的目标是通过编写C语言代码,实现一个双链表的数据结构,并通过编写对应的测试代码来验证实现的正确性。下面将详细介绍标题和描述中提及的知识点以及相关的C语言编程概念。 ### 知识点一:GitHub Classroom的使用 - **GitHub Classroom** 是一个教育工具,旨在帮助教师和学生通过GitHub管理作业和项目。它允许教师创建作业模板,自动为学生创建仓库,并提供了一个清晰的结构来提交和批改学生作业。在这个实验中,"list_lab2-AquilesDiosT"是由GitHub Classroom创建的项目。 ### 知识点二:实验室参数解析器和代码清单 - 实验参数解析器可能是指实验室中用于管理不同实验配置和参数设置的工具或脚本。 - "Antes de Comenzar"(在开始之前)可能是一个实验指南或说明,指示了实验的前提条件或准备工作。 - "实验室实务清单"可能是指实施实验所需遵循的步骤或注意事项列表。 ### 知识点三:C语言编程基础 - **C语言** 作为编程语言,是实验项目的核心,因此在描述中出现了"C"标签。 - **文件操作**:实验要求只可以操作`list.c`和`main.c`文件,这涉及到C语言对文件的操作和管理。 - **函数的调用**:`test`函数的使用意味着需要编写测试代码来验证实验结果。 - **调试技巧**:允许使用`printf`来调试代码,这是C语言程序员常用的一种简单而有效的调试方法。 ### 知识点四:数据结构的实现与应用 - **链表**:在C语言中实现链表需要对结构体(struct)和指针(pointer)有深刻的理解。链表是一种常见的数据结构,链表中的每个节点包含数据部分和指向下一个节点的指针。实验中要求实现的双链表,每个节点除了包含指向下一个节点的指针外,还包含一个指向前一个节点的指针,允许双向遍历。 ### 知识点五:程序结构设计 - **typedef struct Node Node;**:这是一个C语言中定义类型别名的语法,可以使得链表节点的声明更加清晰和简洁。 - **数据结构定义**:在`Node`结构体中,`void * data;`用来存储节点中的数据,而`Node * next;`用来指向下一个节点的地址。`void *`表示可以指向任何类型的数据,这提供了灵活性来存储不同类型的数据。 ### 知识点六:版本控制系统Git的使用 - **不允许使用git**:这是实验的特别要求,可能是为了让学生专注于学习数据结构的实现,而不涉及版本控制系统的使用。在实际工作中,使用Git等版本控制系统是非常重要的技能,它帮助开发者管理项目版本,协作开发等。 ### 知识点七:项目文件结构 - **文件命名**:`list_lab2-AquilesDiosT-main`表明这是实验项目中的主文件。在实际的文件系统中,通常会有多个文件来共同构成一个项目,如源代码文件、头文件和测试文件等。 总结而言,"list_lab2-AquilesDiosT"实验项目要求学生运用C语言编程知识,实现双链表的数据结构,并通过编写测试代码来验证实现的正确性。这个过程不仅考察了学生对C语言和数据结构的掌握程度,同时也涉及了软件开发中的基本调试方法和文件操作技能。虽然实验中禁止了Git的使用,但在现实中,版本控制的技能同样重要。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

【三态RS锁存器CD4043的秘密】:从入门到精通的电路设计指南(附实际应用案例)

# 摘要 三态RS锁存器CD4043是一种具有三态逻辑工作模式的数字电子元件,广泛应用于信号缓冲、存储以及多路数据选择等场合。本文首先介绍了CD4043的基础知识和基本特性,然后深入探讨其工作原理和逻辑行为,紧接着阐述了如何在电路设计中实践运用CD4043,并提供了高级应用技巧和性能优化策略。最后,针对CD4043的故障诊断与排错进行了详细讨论,并通过综合案例分析,指出了设计挑战和未来发展趋势。本文旨在为电子工程师提供全面的CD4043应用指南,同时为相关领域的研究提供参考。 # 关键字 三态RS锁存器;CD4043;电路设计;信号缓冲;故障诊断;微控制器接口 参考资源链接:[CD4043
recommend-type

霍夫曼四元编码matlab

霍夫曼四元码(Huffman Coding)是一种基于频率最优的编码算法,常用于数据压缩中。在MATLAB中,你可以利用内置函数来生成霍夫曼树并创建对应的编码表。以下是简单的步骤: 1. **收集数据**:首先,你需要一个数据集,其中包含每个字符及其出现的频率。 2. **构建霍夫曼树**:使用`huffmandict`函数,输入字符数组和它们的频率,MATLAB会自动构建一棵霍夫曼树。例如: ```matlab char_freq = [freq1, freq2, ...]; % 字符频率向量 huffTree = huffmandict(char_freq);
recommend-type

MATLAB在AWS上的自动化部署与运行指南

资源摘要信息:"AWS上的MATLAB是MathWorks官方提供的参考架构,旨在简化用户在Amazon Web Services (AWS) 上部署和运行MATLAB的流程。该架构能够让用户自动执行创建和配置AWS基础设施的任务,并确保可以在AWS实例上顺利运行MATLAB软件。为了使用这个参考架构,用户需要拥有有效的MATLAB许可证,并且已经在AWS中建立了自己的账户。 具体的参考架构包括了分步指导,架构示意图以及一系列可以在AWS环境中执行的模板和脚本。这些资源为用户提供了详细的步骤说明,指导用户如何一步步设置和配置AWS环境,以便兼容和利用MATLAB的各种功能。这些模板和脚本是自动化的,减少了手动配置的复杂性和出错概率。 MathWorks公司是MATLAB软件的开发者,该公司提供了广泛的技术支持和咨询服务,致力于帮助用户解决在云端使用MATLAB时可能遇到的问题。除了MATLAB,MathWorks还开发了Simulink等其他科学计算软件,与MATLAB紧密集成,提供了模型设计、仿真和分析的功能。 MathWorks对云环境的支持不仅限于AWS,还包括其他公共云平台。用户可以通过访问MathWorks的官方网站了解更多信息,链接为www.mathworks.com/cloud.html#PublicClouds。在这个页面上,MathWorks提供了关于如何在不同云平台上使用MATLAB的详细信息和指导。 在AWS环境中,用户可以通过参考架构自动化的模板和脚本,快速完成以下任务: 1. 创建AWS资源:如EC2实例、EBS存储卷、VPC(虚拟私有云)和子网等。 2. 配置安全组和网络访问控制列表(ACLs),以确保符合安全最佳实践。 3. 安装和配置MATLAB及其相关产品,包括Parallel Computing Toolbox、MATLAB Parallel Server等,以便利用多核处理和集群计算。 4. 集成AWS服务,如Amazon S3用于存储,AWS Batch用于大规模批量处理,Amazon EC2 Spot Instances用于成本效益更高的计算任务。 此外,AWS上的MATLAB架构还包括了监控和日志记录的功能,让用户能够跟踪和分析运行状况,确保应用程序稳定运行。用户还可以根据自己的需求自定义和扩展这些模板和脚本。 在使用AWS上的MATLAB之前,用户需要了解MathWorks的许可协议,明确自己的许可证是否允许在云环境中使用MATLAB,并确保遵守相关法律法规。MathWorks提供了广泛的资源和支持,帮助用户快速上手,有效利用AWS资源,以及在云端部署和扩展MATLAB应用程序。 综上所述,AWS上的MATLAB参考架构是为希望在AWS云平台上部署MATLAB的用户提供的一种快速、简便的解决方案。它不仅减少了手动配置的复杂性,还为用户提供了广泛的资源和指导,以确保用户能够在云环境中高效、安全地使用MATLAB。"
recommend-type

"互动学习:行动中的多样性与论文攻读经历"

多样性她- 事实上SCI NCES你的时间表ECOLEDO C Tora SC和NCESPOUR l’Ingén学习互动,互动学习以行动为中心的强化学习学会互动,互动学习,以行动为中心的强化学习计算机科学博士论文于2021年9月28日在Villeneuve d'Asq公开支持马修·瑟林评审团主席法布里斯·勒菲弗尔阿维尼翁大学教授论文指导奥利维尔·皮耶昆谷歌研究教授:智囊团论文联合主任菲利普·普雷教授,大学。里尔/CRISTAL/因里亚报告员奥利维耶·西格德索邦大学报告员卢多维奇·德诺耶教授,Facebook /索邦大学审查员越南圣迈IMT Atlantic高级讲师邀请弗洛里安·斯特鲁布博士,Deepmind对于那些及时看到自己错误的人...3谢谢你首先,我要感谢我的两位博士生导师Olivier和Philippe。奥利维尔,"站在巨人的肩膀上"这句话对你来说完全有意义了。从科学上讲,你知道在这篇论文的(许多)错误中,你是我可以依
recommend-type

铁路售票系统用例图:异常流处理的黄金法则

![铁路售票系统用例图:异常流处理的黄金法则](https://opengraph.githubassets.com/afac9d71167fe51e2e95e6b89ecf588c94077f4e2d4e82c217ba436f21dce30d/DarshanGH/Railway-Ticket-Booking-System) # 摘要 本文全面探讨了铁路售票系统的异常流处理问题,阐述了用例图在系统设计中的重要性及其绘制方法,同时分析了异常流的定义、设计原则、最佳实践及其在铁路售票系统中的应用。文章进一步深入到异常流识别、分类、处理流程设计以及用户界面处理的策略,确保异常情况下的系统稳定性和