Member of the waveform generation class.
c = logspace(a, b)
c = logspace(a, b, n)
Generates logarithmically distributed samples in an interval.
| Name | Description |
| a | Specifies a scalar. |
| b | Specifies a scalar. |
| n | Specifies the number of logarithmically distributed samples to generate. n is an integer. The default is 50. |
| Name | Description |
| c | Returns n logarithmically distributed samples in the interval [10^a, 10^b]. If b = pi, then c returns samples that lie in the interval [10^a, pi]. c is a vector. |
C = logspace(1, 3, 30)