Scilab 5.5.2
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
整数: 要求された値の数. 2以上とする必要があります (デフォルト値= 100)
- v
実数または複素数の行ベクトル
説明
線形に間隔をとったベクトル. linspace(x1, x2)
はx1
と x2
の間に線形に等間隔をとった
n(デフォルト値=100)要素の行ベクトルとなります.
x1
または x2
が複素数の場合,
linspace(x1,x2)
はn個の複素数からなる行ベクトル
を返します.
n個の複素数の実部は,x1
とx2.
の実部の間に線形に等間隔に配置されます.
例
linspace(1,2,10) linspace([1:4]',[5:8]',10) linspace(1+%i,2+2*%i,10)
参照
- logspace — 対数的間隔のベクトル
履歴
バージョン | 記述 |
5.4.0 |
|
Report an issue | ||
<< ind2sub | elementarymatrices | logspace >> |