classUnderlying
tall 数组中基础数据的类
说明
示例
确定 tall 数组的基础类
所有 tall 表和数组都属于 tall
类。不过,tall 数组的基础数据类型可以不同。
为 airlinesmall.csv
数据集创建数据存储。选择要使用的变量的子集,并将 'NA'
值视为缺失数据,以便 datastore
将它们替换为 NaN
值。将数据存储转换为 tall 表。
varnames = {'Year', 'UniqueCarrier'}; ds = tabularTextDatastore('airlinesmall.csv','TreatAsMissing','NA',... 'SelectedVariableNames',varnames); tt = tall(ds)
tt = Mx2 tall table Year UniqueCarrier ____ _____________ 1987 {'PS'} 1987 {'PS'} 1987 {'PS'} 1987 {'PS'} 1987 {'PS'} 1987 {'PS'} 1987 {'PS'} 1987 {'PS'} : : : :
确定 tall 表 tt
和第一个表变量 Year
的类。
class(tt)
ans = 'tall'
class(tt.Year)
ans = 'tall'
确定 tt
以及 Year
和 UniqueCarrier
表变量的基础数据类型。
classUnderlying(tt)
ans = 1x5 tall char array 'table'
classUnderlying(tt.Year)
ans = 1x6 tall char array 'double'
classUnderlying(tt.UniqueCarrier)
ans = 1x4 tall char array 'cell'
有些情况下,classUnderlying
返回的结果是未计算的 tall 数组。可使用 gather
函数将结果加载到内存中来计算未计算的 tall 数组。
输入参数
X
— 输入数组
tall 数组
输入数组,指定为 tall 数组。
数据类型: single
| double
| int8
| int16
| int32
| int64
| uint8
| uint16
| uint32
| uint64
| logical
| table
| cell
| categorical
| datetime
| duration
| calendarDuration
输出参量
C
— 基础类
tall 数组
基础类,以 tall 数组形式返回。
提示
使用
isaUnderlying
可测试 tall 数组是否具有特定的基础数据类型。
扩展功能
tall 数组
对行数太多而无法放入内存的数组进行计算。
GPU 数组
通过使用 Parallel Computing Toolbox™ 在图形处理单元 (GPU) 上运行来加快代码执行。
用法说明和限制:
请参阅
classUnderlying
(Parallel Computing Toolbox)。
版本历史记录
在 R2016b 中推出
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)