Scilab 5.4.0
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
linspace
線形に配置されたベクトル
呼び出し手順
[v]=linspace(x1,x2 [,n])
パラメータ
- x1,x2
実数または複素数のスカラー
- n
整数 (値の数) (デフォルト値= 100)
- v
実数または複素数の行ベクトル
説明
線形に間隔をとったベクトル. linspace(x1, x2)
はx1
と x2
の間に線形に間隔をとった
n(デフォルト値=100)要素の行ベクトルとなります.
x1
または x2
が複素数の場合,
linspace(x1,x2)
はn個の複素数からなる行ベクトル
を返します.
n個の複素数の実部は,x1
とx2.
の実部の間に線形に等間隔に配置されます.
例
linspace(1,2,10) linspace(1+%i,2+2*%i,10)
参照
- logspace — 対数的間隔のベクトル
Report an issue | ||
<< ind2sub | elementarymatrices | logspace >> |