TOUR(TSP)
TOUR()所属R语言包:TSP
Class TOUR – Solution to a traveling salesperson problem
级旅游 - 一个旅行推销员问题的解决方案
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Class to store the solution of a TSP. Objects of this class are returned by TSP solvers in this package. Essentially, an object of class TOUR is a permutation vector containing the order of cities to visit.
级存储解决方案的TSP。在此包中的TSP求解器返回这个类的对象。从本质上讲,一个对象的类TOUR的是一个置换向量城市的顺序访问。
用法----------Usage----------
## conctructor
TOUR(x, method=NA, tsp=NULL)
## coercion
as.TOUR(object)
## methods
## S3 method for class 'TOUR'
print(x, ...)
参数----------Arguments----------
参数:x
an integer permutation vector or, for the methods an object of class TOUR </table>
整数置换矢量的方法,对象类TOUR</ TABLE>
参数:object
data (an integer vector) which can be coerced to TOUR. </table>
数据(整数向量),它可以被强制转换为TOUR。 </ TABLE>
参数:method
character string; method used to create the tour.
字符串的方法用于创建旅游。
参数:tsp
TSP object the tour applies to. If available then the tour will include the tour length. Also the labes of the cities will be available in the tour (otherwise the labels of x are used).
TSP对象适用于旅游。如果有的话,那么巡回演唱会包括旅游的长度。此外,LABES的城市将在旅游(否则的标签x)。
参数:...
further arguments are passed on.
进一步的参数被传递。
Details
详细信息----------Details----------
Since an object of class TOUR is an integer vector, it can be subsetted as an ordinary vector or coerced to an integer vector using as.integer(). It also contains the names of the objects as labels. Additionally, TOUR has the following attributes: "method", "tour_length".
由于一个的类TOUR的对象是一个整数向量,它可以作为一个普通的向量的子集,或强制转换为一个整数矢量使用as.integer()。它也包含作为标签的对象的名称。此外,TOUR有以下属性:"method","tour_length"。
For most functions, e.g., tour_length or image, the TSP/ATSP object used to find the tour is still needed, since the tour does not contain the distance information.
对于大多数功能,例如,tour_length或image,TSP/ATSP对象仍然需要找到旅游,自游不包含的距离信息。
参见----------See Also----------
TSP, ATSP, tour_length, image.
TSP,ATSP,tour_length,image。
实例----------Examples----------
TOUR(1:10)
## calculate a tour[#计算旅游]
data("USCA50")
tour <- solve_TSP(USCA50)
tour
## get permutation vector[#置换矢量]
as.integer(tour)
## show labels[#显示标签]
labels(tour)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|