Slope
引数を持ち、Distance
を返すPython 関数がありますCost
。勾配は 1 から 80 の範囲で指定できます。距離は 1 から 20000 の範囲で指定できます。コストは任意の正の数です。
傾き、距離、コストの関係を知りたいです。これら 3 つの変数間の関係を示すのに最適なプロットはどれですか? そして、どうやってそれを作成しますか。たとえば、勾配が上がって距離が下がった場合、コストはどうなるか知りたいですか? 勾配と距離が上がるとコストはどうなりますか? 等...
def func(Slope, Distance):
...
return cost
SlopeList = list(xrange(81))
DistanceList = list(xrange(20000)
myList= []
for Distance in DistanceList:
for Slope in SlopeList:
cost = func(Slope, Distance)
var = (Slope, Distance, Cost)
append.myList(var)