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
- meshgrid
- min
- modulo
- ndgrid
- ndims
- nextpow2
- norm
- ones
- or
- |
- pen2ea
- permute
- pertrans
- prod
- rand
- real
- resize_matrix
- setdiff
- sign
- signm
- size
- solve
- 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
linearly spaced vector
Calling Sequence
[v]=linspace(x1,x2 [,n])
Arguments
- x1,x2
real or complex scalars
- n
integer (number of values) (default value = 100)
- v
real or complex row vector
Description
Linearly spaced vector. linspace(x1, x2)
generates a row vector of n (default value=100) linearly equally spaced
points between x1
and x2
. If
x1
or x2
are complex then
linspace(x1,x2)
returns a row vector of n complexes,
the real (resp. imaginary) parts of the n complexes are linearly equally
spaced between the real (resp. imaginary) parst of x1
and x2.
Examples
linspace(1,2,10) linspace(1+%i,2+2*%i,10)
See Also
<< lex_sort | Elementary Functions | log >> |