logspace
logarithmically spaced vector constructor.
📝Syntax
V = logspace(s, e)
V = logspace(s, e, n)
📥Input Arguments
Parameter Description
s first value: a scalar, single or double.
e last value: a scalar, single or double.
n Number of points: a scalar, single or double (by default 100).
📤Output Arguments
Parameter Description
V result of logspace: an logarithmically spaced vector.
📄Description

logspace generates an logarithmically spaced vector.

💡Examples
V = logspace(1+2i, 10+10i, 4)
🔗See Also
linspace
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub