NumPy 的 arange(~)
方法用於創建具有等距值的 NumPy 數組,類似於 Python 的 range(~)
方法。
參數
1.start
| number
| optional
起始值。這將是 NumPy 數組中的第一個元素。
2. stop
| number
最終值。就像Python的 range(~)
方法一樣,區間不包含該值。
3. step
| number
| optional
值之間的間距。默認情況下,step=1
。
4. dtype
| string
或 type
| optional
NumPy 數組所需的數據類型。默認情況下,類型是根據其他參數推斷的。
返回值
具有等距值的 NumPy 數組。
例子
僅指定最終值
獲取從 0(含)到 3(不含)的 NumPy 數組:
np.arange(3)
array([0, 1, 2])
請注意值 3(即 stop
參數)如何從 NumPy 數組中排除。
指定開始值和結束值
獲取從 2(含)到 5(不含)的 NumPy 數組:
np.arange(start=2, stop=5)
array([2, 3, 4])
指定步長
要獲取 NumPy 數組,其中值均勻間隔 3 個單位:
np.arange(1, 10, 3)
array([1, 4, 7])
指定負步長
np.arange(6, 2, -1)
array([6, 5, 4, 3])
指定數據類型
要創建一個從 2.0(含)到 5(不含)結束的浮點數 NumPy 數組:
np.arange(start=2, stop=5, dtype="float")
array([2., 3., 4.])
相關用法
- Python arcgis.gis._impl._profile.ProfileManager.save_as用法及代碼示例
- Python arcgis.raster.functions.ccdc_analysis用法及代碼示例
- Python arcgis.geometry.functions.trim_extend用法及代碼示例
- Python arcgis.raster.analytics.sample用法及代碼示例
- Python arcgis.features.analysis.derive_new_locations用法及代碼示例
- Python arcgis.features.analyze_patterns.calculate_density用法及代碼示例
- Python arcgis.geometry.Geometry.label_point用法及代碼示例
- Python arcgis.plan_routes用法及代碼示例
- Python arcgis.mapping.forms.FormInfo用法及代碼示例
- Python arcgis.gis.UserManager.get用法及代碼示例
- Python arcgis.raster.ImageryLayerCacheManager.update_tiles用法及代碼示例
- Python arcgis.geometry.Geometry.true_centroid用法及代碼示例
- Python arcgis.gis.User.generate_direct_access_url用法及代碼示例
- Python arcgis.gis.GroupMigrationManager.create用法及代碼示例
- Python arcgis.geometry.Geometry.hull_rectangle用法及代碼示例
- Python arcgis.features.analysis.summarize_within用法及代碼示例
- Python arcgis.geometry.filters.intersects用法及代碼示例
- Python arcgis.geometry.functions.project用法及代碼示例
- Python arcgis.raster.functions.percentile用法及代碼示例
- Python arcgis.raster.ImageryLayer.save用法及代碼示例
- Python arcgis.geoanalytics.summarize_data.reconstruct_tracks用法及代碼示例
- Python arcgis.gis.admin.LivingAtlas用法及代碼示例
- Python arcgis.features.Table.get_unique_values用法及代碼示例
- Python arcgis.realtime.velocity.feeds.RunInterval用法及代碼示例
- Python arcgis.mapping.WebMap.print用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 NumPy | arange method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。