CoordinateBounds[coords]
coords で定義された領域の各次元における境界のリスト{{xmin,xmax},{ymin,ymax},…}を与える.
CoordinateBounds[coords,δ]
各次元について座標範囲を±δ で充填する.
CoordinateBounds[coords,Scaled[s]]
各次元をスケールされた量 s で充填する.
CoordinateBounds[coords,{p1,p2,…}]
連続する次元を p1,p2,…で充填する.
CoordinateBounds[coords,{{p1min,p1max},{p2min,p2max},…}]
{{xmin-p1min,xmax+p1max},{ymin-p2min,ymax+p2max},…}を与える.
CoordinateBounds
CoordinateBounds[coords]
coords で定義された領域の各次元における境界のリスト{{xmin,xmax},{ymin,ymax},…}を与える.
CoordinateBounds[coords,δ]
各次元について座標範囲を±δ で充填する.
CoordinateBounds[coords,Scaled[s]]
各次元をスケールされた量 s で充填する.
CoordinateBounds[coords,{p1,p2,…}]
連続する次元を p1,p2,…で充填する.
CoordinateBounds[coords,{{p1min,p1max},{p2min,p2max},…}]
{{xmin-p1min,xmax+p1max},{ymin-p2min,ymax+p2max},…}を与える.
詳細
- CoordinateBoundsは,すべての座標が実数の場合は確定的な結果を与える.
- その他の場合は,CoordinateBoundsは何らかの簡約を行う.
例題
すべて開く すべて閉じる例 (1)
CoordinateBounds[{{0, 1}, {1, 2}, {2, 1}, {3, 2}, {4, 0}}]CoordinateBounds[{{0, 1}, {1, 2}, {2, 1}, {3, 2}, {4, 0}}, 1]CoordinateBounds[{{0, 1}, {1, 2}, {2, 1}, {3, 2}, {4, 0}}, Scaled[1 / 4]]スコープ (4)
CirclePoints[5]CoordinateBounds[%]CoordinateBounds[{{1, 2}, {{{{{5, 6}}}}, {9, 10}}}]2次元の点の集合の境界を,全方向に1単位ずつ余白を加えて求める:
pts = {{3, -3}, {3, 3}, {-3, 3}, {-3, -3}};CoordinateBounds[pts, 1]CoordinateBounds[pts, {1, 2}]CoordinateBounds[pts, {{1, 2}, {3, 4}}]coords = {{{0.0736388, 2.2431, -0.34123}, {-1.1412, 0.75341, 5.34125}}, {π, E, Sqrt[2]}, {Exp[2], Log[10000], Csc[(1/10)]}, {{{2, 1, 7}, {-9, -5, 7}}, {{-2, 9, 5}, {8, -9, 9}}}};CoordinateBounds[coords]CoordinateBounds[coords, 1]CoordinateBounds[coords, Scaled[.1]]CoordinateBounds[coords, {.1, Scaled[.2], .3}]CoordinateBounds[coords, {0, 1}]CoordinateBounds[coords, {{0, 1}, {1.5, 0.5}, {1 / 2, 1 / 3}}]一般化と拡張 (1)
アプリケーション (1)
特性と関係 (4)
一般に,CoordinateBounds[coords]はCoordinateBoundingBox[coords]を転置したものである:
coords = RandomReal[1, {12, 4}];CoordinateBounds[coords]Transpose[CoordinateBoundingBox[coords]]行列で与えられる座標については,CoordinateBounds[coords]はMap[MinMax, Transpose[coords]]に等しい:
coords = RandomInteger[{-9, 9}, {47, 6}];CoordinateBounds[coords]Map[MinMax, Transpose[coords]]pol = RandomPolygon[10]CoordinateBounds[PolygonCoordinates[pol]]多角形にRegionBoundsを使っても同じ結果が得られる:
RegionBounds[pol]Graphics[{Opacity[0.5], pol, EdgeForm[Magenta], FaceForm[], Rectangle@@Transpose[%]}, Frame -> True]フランス国内のランダムな地理的位置500個の集合を取得する:
gps = RandomGeoPosition[Entity["Country", "France"], 500]CoordinateBounds[LatitudeLongitude[gps]]同一の結果は,GeoBoundsを使用することで,度を単位とした数値としても得られる:
GeoBounds[gps]GeoGraphics[{GeoBoundsRegion[%], Orange, Point[gps]}]関連するガイド
テキスト
Wolfram Research (2015), CoordinateBounds, Wolfram言語関数, https://reference.wolfram.com/language/ref/CoordinateBounds.html.
CMS
Wolfram Language. 2015. "CoordinateBounds." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/CoordinateBounds.html.
APA
Wolfram Language. (2015). CoordinateBounds. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/CoordinateBounds.html
BibTeX
@misc{reference.wolfram_2026_coordinatebounds, author="Wolfram Research", title="{CoordinateBounds}", year="2015", howpublished="\url{https://reference.wolfram.com/language/ref/CoordinateBounds.html}", note=[Accessed: 08-September-2026]}
BibLaTeX
@online{reference.wolfram_2026_coordinatebounds, organization={Wolfram Research}, title={CoordinateBounds}, year={2015}, url={https://reference.wolfram.com/language/ref/CoordinateBounds.html}, note=[Accessed: 08-September-2026]}