Scilab 5.3.0
- Scilab Online Help
- Elementary Functions
- Discrete mathematics
- Floating point
- Integer representation
- Trigonometry
- abs
- amell
- and
- &
- binomial
- bitand
- bitor
- bloc2exp
- bloc2ss
- cat
- cell2mat
- cellstr
- char
- cumprod
- cumsum
- delip
- diag
- diff
- dsearch
- exp
- eye
- flipdim
- gsort
- imag
- imult
- ind2sub
- intersect
- inttrap
- isdef
- isempty
- isequal
- isequalbitwise
- isreal
- isvector
- kron
- lex_sort
- linspace
- log
- log10
- log1p
- log2
- logm
- logspace
- lstsize
- max
- maxi
- meshgrid
- min
- mini
- modulo
- ndgrid
- ndims
- nextpow2
- norm
- ones
- or
- |
- pen2ea
- permute
- pertrans
- prod
- rand
- real
- resize_matrix
- setdiff
- sign
- signm
- size
- solve
- sort
- sqrt
- sqrtm
- squarewave
- ssrand
- sub2ind
- sum
- sysconv
- sysdiag
- syslin
- toeplitz
- trfmod
- trianfml
- tril
- trisolve
- triu
- typeof
- union
- unique
- vectorfind
- zeros
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)
参照
<< lex_sort | Elementary Functions | log >> |