Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.3 - English

Change language to:
Français - 日本語 - Português

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab help >> Elementary Functions > Elementary matrices > linspace

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

  • logspace — logarithmically spaced vector
<< ind2sub Elementary matrices logspace >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Oct 05 12:09:38 CEST 2011