アレンジ機能と似ています。ただし、構文でステップ サイズを指定することはできません。
その代わりに、指定された期間にわたって均等に区切られた値のみを返します。システムはステップ サイズを暗黙的に計算します。
Androidプロセスacoreが停止し続ける
構文
numpy.linspace(start, stop, num, endpoint, retstep, dtype)
パラメーター
次のパラメータを受け入れます。
- start: 間隔の開始値を表します。
- stop: インターバルの停止値を表します。
- num: 生成される間隔内で等間隔のサンプルの量。デフォルトは 50 です。
- endpoint: true 値は、停止値が間隔に含まれていることを示します。
- rettstep: これはブール値である必要があります。連続する番号間のステップとサンプルを表します。
- dtype: 配列項目のデータ型を表します。
戻る
指定された範囲内の配列が返されます。
例1
import numpy as np arr = np.linspace(10, 20, 5) print('The array over the given range is ',arr)
出力:
文字.比較Java
The array over the given range is [10. 12.5 15. 17.5 20.]
例 2
import numpy as np arr = np.linspace(10, 20, 5, endpoint = False) print('The array over the given range is ',arr)
出力:
The array over the given range is [10. 12. 14. 16. 18.]