linspace
生成线性间距向量
说明
示例
等间距数字向量
包含指定数量的值的向量
创建一个由区间 [-5,5]
中的 7 个等间距点组成的向量。
y1 = linspace(-5,5,7)
y1 = 1×7
-5.0000 -3.3333 -1.6667 0 1.6667 3.3333 5.0000
由均匀分布的复数组成的向量
创建一个复数向量,包含介于 1+2i
和 10+10i
之间的 8 个等间距点。
y = linspace(1+2i,10+10i,8)
y = 1×8 complex
1.0000 + 2.0000i 2.2857 + 3.1429i 3.5714 + 4.2857i 4.8571 + 5.4286i 6.1429 + 6.5714i 7.4286 + 7.7143i 8.7143 + 8.8571i 10.0000 +10.0000i
输入参数
x1,x2
— 点区间
标量对组
点区间,指定为一个标量对组。x1
和 x2
定义 linspace
生成点的区间。x2
可以大于或小于 x1
。如果 x2
比 x1
小,则向量包含递减的值。
数据类型: single
| double
| datetime
| duration
复数支持: 是
n
— 点的数目
100 (默认) | 实数标量 | NaN
点的数目,指定为实数标量或 NaN
。
如果
n
为1
,则linspace
返回x2
。如果
n
为零或负数,则linspace
返回 1×0 空矩阵。如果
n
不是整数,则linspace
向下舍入并返回floor(n)
个点。如果
n
为NaN
,则linspace
返回NaN
。
扩展功能
C/C++ 代码生成
使用 MATLAB® Coder™ 生成 C 代码和 C++ 代码。
用法说明和限制:
不支持对点数等于
NaN
的linspace
的调用。
基于线程的环境
使用 MATLAB® backgroundPool
在后台运行代码或使用 Parallel Computing Toolbox™ ThreadPool
加快代码运行速度。
此函数完全支持基于线程的环境。有关详细信息,请参阅在基于线程的环境中运行 MATLAB 函数。
GPU 数组
通过使用 Parallel Computing Toolbox™ 在图形处理单元 (GPU) 上运行来加快代码执行。
用法说明和限制:
要在 GPU 上运行此函数并获得 gpuArray
输出,请使用以下任意语法:
y = gpuArray.linspace(x1,x2) y = gpuArray.linspace(x1,x2,n)
有关详细信息,请参阅在 GPU 上运行 MATLAB 函数 (Parallel Computing Toolbox)。
分布式数组
使用 Parallel Computing Toolbox™ 在集群的组合内存中对大型数组进行分区。
用法说明和限制:
使用
distributed.linspace
可调用linspace
的分布式版本。x1
和x2
必须为single
或double
标量。
有关详细信息,请参阅使用分布式数组运行 MATLAB 函数 (Parallel Computing Toolbox)。
版本历史记录
在 R2006a 之前推出
MATLAB 命令
您点击的链接对应于以下 MATLAB 命令:
请在 MATLAB 命令行窗口中直接输入以执行命令。Web 浏览器不支持 MATLAB 命令。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)