TSP(TSP)
TSP()所属R语言包:TSP
Class TSP – Symmetric traveling salesperson problem
TSP - 类对称旅行商问题
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Constructor to create an instance of a symmetric traveling salesperson problem (TSP) and some auxiliary methods.
构造函数来创建一个对称旅行商问题(TSP)和一些辅助方法的一个实例。
用法----------Usage----------
## constructor
TSP(x, labels = NULL)
## coercion
as.TSP(object)
## methods
## S3 method for class 'TSP'
n_of_cities(x)
## S3 method for class 'TSP'
image(x, order, col = gray.colors(64), ...)
## S3 method for class 'TSP'
labels(object, ...)
## S3 method for class 'TSP'
print(x, ...)
参数----------Arguments----------
参数:x, object
an object (currently dist or a symmetric matrix) to be converted into a TSP or, for the methods, an object of class TSP.
一个对象(目前dist或对称矩阵)被转换成一个TSP,或用于该方法中,类的一个对象TSP。
参数:labels
optional city labels. If not given, labels are taken from x.
可选的城市标签。如果没有给出,标签是从x。
参数:col
color scheme for image.
图像的配色方案。
参数:order
order of cities for the image as an integer vector or an object of class TOUR.
为了城市作为一个整数向量的图像或对象的类TOUR。
参数:...
further arguments are passed on.
进一步的参数被传递。
Details
详细信息----------Details----------
Objects of class TSP are internally represented as dist objects (use as.dist() to get the dist object).
类的对象TSP在内部表示为dist对象(使用as.dist()dist对象)。
值----------Value----------
TSP() returns x as an object of class TSP.
TSP()返回x为对象的类TSP。
n_of_cities() returns the number of cities in x.
n_of_cities()返回城市的数量在x。
labels() returns a vector with the names of the cities in x.
labels()返回一个向量的城市中x的名称。
参见----------See Also----------
TOUR, insert_dummy, tour_length, solve_TSP.
TOUR,insert_dummy,tour_length,solve_TSP。
实例----------Examples----------
data("iris")
d <- dist(iris[-5])
## create a TSP[#创建一个TSP]
tsp <- TSP(d)
tsp
## use some methods [#使用的一些方法。]
n_of_cities(tsp)
labels(tsp)
image(tsp)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|