1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MATLAB csvファイル読み込み方法

Last updated at Posted at 2018-05-19

#MATLA読み込むファイル名の指定

メモします

##1. csvread

% folderPathという変数にフォルダのパスを代入
folderPath = ['C:\Users\userx\Documents\MATLAB'];
% fileNameという変数にフォルダの下にあるcsvファイル名を代入
fileName =  [folderPath '\' 'csvFileName' '.csv'];
% csvread関数を用いてreadFileという変数にcsvファイルの中身を代入
readFile = csvread(fileName);
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?