ChebyshevDistance[u,v]
ベクトル u と v の間のチェビシェフ(Chebyshev)の距離すなわちはsupノルム距離を返す.
ChebyshevDistance
ChebyshevDistance[u,v]
ベクトル u と v の間のチェビシェフ(Chebyshev)の距離すなわちはsupノルム距離を返す.
例題
すべて開く すべて閉じる例 (2)
スコープ (2)
アプリケーション (2)
FindClusters[{{2, 3}, {5, 10}, {4, 5}, {2, 2}}, DistanceFunction -> ChebyshevDistance]d1 = ChebyshevDistance[{a, b}, {a, c}]d2 = ChebyshevDistance[{a, c}, {d, c}]d3 = ChebyshevDistance[{a, b}, {d, c}]Simplify[d3 <= d1 + d2]特性と関係 (4)
ChebyshevDistance[{a, b, c}, {x, y, z}]Max[Abs[{a, b, c} - {x, y, z}]]ChebyshevDistanceは差分のNormに等しい:
ChebyshevDistance[{a, b, c}, {x, y, z}]Norm[{a, b, c} - {x, y, z}, Infinity]ChebyshevDistanceはManhattanDistance以下である:
u = {a, b, c};
v = {x, y, z};Simplify[ChebyshevDistance[u, v] ≤ ManhattanDistance[u, v]]ChebyshevDistanceはEuclideanDistance以下である:
u = {a, b, c};
v = {x, y, z};Simplify[ChebyshevDistance[u, v] ≤ EuclideanDistance[u, v]]テクニカルノート
テキスト
Wolfram Research (2007), ChebyshevDistance, Wolfram言語関数, https://reference.wolfram.com/language/ref/ChebyshevDistance.html.
CMS
Wolfram Language. 2007. "ChebyshevDistance." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/ChebyshevDistance.html.
APA
Wolfram Language. (2007). ChebyshevDistance. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/ChebyshevDistance.html
BibTeX
@misc{reference.wolfram_2026_chebyshevdistance, author="Wolfram Research", title="{ChebyshevDistance}", year="2007", howpublished="\url{https://reference.wolfram.com/language/ref/ChebyshevDistance.html}", note=[Accessed: 07-September-2026]}
BibLaTeX
@online{reference.wolfram_2026_chebyshevdistance, organization={Wolfram Research}, title={ChebyshevDistance}, year={2007}, url={https://reference.wolfram.com/language/ref/ChebyshevDistance.html}, note=[Accessed: 07-September-2026]}