matlab 批量导入csv
答案:2 悬赏:10 手机版
解决时间 2021-02-14 09:31
- 提问者网友:雪舞兮
- 2021-02-13 19:28
我现在有250个CSV文件,名字按照filtered 1,2,3,.....这样一直下去。现在我想把这些CSV文件里第二列从第二行开始到第2501行的数据全部导入到MATLAB里,这要怎么做?
最佳答案
- 五星知识达人网友:平生事
- 2021-02-13 20:25
选择Tools菜单下的Text Importer
选择Data to Oracle,然后选择Owner 和 Table,之后选择 Open data file
选择好csv数据文件之后
在Fields中配置对应关系,Fileds1对应的是csv文件中的第一列,配置对应数据库的那一列,注意数据类型,不然导入数据库时会报错最后选择Import就完成了,非常简单。
选择Data to Oracle,然后选择Owner 和 Table,之后选择 Open data file
选择好csv数据文件之后
在Fields中配置对应关系,Fileds1对应的是csv文件中的第一列,配置对应数据库的那一列,注意数据类型,不然导入数据库时会报错最后选择Import就完成了,非常简单。
全部回答
- 1楼网友:孤老序
- 2021-02-13 21:18
先说一下字符串,字符串在matlab中需要加单引号,你直接使用newdata1 = importdata(dow.txt);
matlab便会将dow.txt看成是变量,但是importdata需要一个包含文件名的字符串变量,但是dow.txt不知道是什么东西,所以会出现??? undefined variable "dow" or class "dow.txt".
正确的使用方法是:
newdata1 = importdata('dow.txt');
或者
path='dow.txt'
newdata1 = importdata(path);
不过importdata不支持后缀名为txt文件,其支持的文件后缀有:
data formats
command
returns
mat - matlab workspace
load
variables in file.
csv - comma separated numbers csvread
double array.
dat - formatted text
importdata double array.
dlm - delimited text
dlmread
double array.
tab - tab separated text
dlmread
double array.
spreadsheet formats
xls - excel worksheet
xlsread
double array and cell array.
wk1 - lotus 123 worksheet
wk1read
double array and cell array.
scientific data formats
cdf - common data format
cdfread
cell array of cdf records
fits - flexible image transport system fitsread
primary or extension table data
hdf - hierarchical data format
hdfread
hdf or hdf-eos data set
movie formats
avi - movie
aviread
matlab movie.
image formats
tiff - tiff image
imread
truecolor, grayscale or indexed image(s).
png - png image
imread
truecolor, grayscale or indexed image.
hdf - hdf image
imread
truecolor or indexed image(s).
bmp - bmp image
imread
truecolor or indexed image.
jpeg - jpeg image
imread
truecolor or grayscale image.
gif - gif image
imread
indexed image.
pcx - pcx image
imread
indexed image.
xwd - xwd image
imread
indexed image.
cur - cursor image
imread
indexed image.
ico - icon image
imread
indexed image.
ras - sun raster image
imread
truecolor or indexed.
pbm - pbm image
imread
grayscale image.
pgm - pgm image
imread
grayscale image.
ppm - ppm image
imread
truecolor image.
audio formats
au
- next/sun sound
auread
sound data and sample rate.
snd - next/sun sound
auread
sound data and sample rate.
wav - microsoft wave sound
wavread
sound data and sample rate.
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯