博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MATLAB importdata函数返回值类型
阅读量:6120 次
发布时间:2019-06-21

本文共 1450 字,大约阅读时间需要 4 分钟。

importdata函数是MATLAB中I/O文件操作的一个重要函数。需要注意的是,针对不同的文件内容,importdata函数的返回值类型也有所不同。

MATLAB帮助文档中的详细说明如下:

Based on the file format, importdata selects and calls a helper function to read the data. When the helper function returns more than one nonempty output, importdata combines the outputs into a struct array.

For ASCII files and spreadsheets, importdata expects to find numeric data in a rectangular form (that is, like a matrix). Text headers can appear above or to the left of the numeric data, as follows:

Column headers or file description text at the top of the file, above the numeric data.

Row headers to the left of the numeric data.

To import ASCII files with nonnumeric characters anywhere else, including columns of character data or formatted dates or times, use textscan instead of importdata. For more information, see Import Mixed Text and Numeric Data from a Text File.

When importing spreadsheets with columns of nonnumeric data, importdata cannot always correctly interpret the column and row headers.

If the ASCII file or spreadsheet contains either column or row headers, but not both, importdata returns a colheaders or rowheaders field in the output structure, where:

colheaders contains only the lowest line of column header text. importdata stores all text in the textdata field.

rowheaders is created only when the file or worksheet contains a single column of row headers.

转载于:https://www.cnblogs.com/yuthreestone/p/3557351.html

你可能感兴趣的文章
JAVA GC
查看>>
codeforce 599B Spongebob and Joke
查看>>
3springboot:springboot配置文件(外部配置加载顺序、自动配置原理,@Conditional)
查看>>
9、Dubbo-配置(4)
查看>>
前端第七天
查看>>
BZOJ 2190[SDOI2008]仪仗队
查看>>
图解SSH原理及两种登录方法
查看>>
[转载] 七龙珠第一部——第058话 魔境圣地
查看>>
【总结整理】JQuery基础学习---样式篇
查看>>
查询个人站点的文章、分类和标签查询
查看>>
基础知识:数字、字符串、列表 的类型及内置方法
查看>>
JSP的隐式对象
查看>>
P127、面试题20:顺时针打印矩阵
查看>>
JS图片跟着鼠标跑效果
查看>>
[SCOI2005][BZOJ 1084]最大子矩阵
查看>>
学习笔记之Data Visualization
查看>>
Leetcode 3. Longest Substring Without Repeating Characters
查看>>
【FJOI2015】金币换位问题
查看>>
数学之美系列二十 -- 自然语言处理的教父 马库斯
查看>>
Android实现自定义位置无标题Dialog
查看>>