データストアを使用し、CSVファイルの指定列、指定行のデータを抽出
显示 更早的评论
matlab 2018aを使用しています。
CSVファイルの指定列のデータを抜き出したくてtabularTextDatastoreの
SelectedVariableNamesを使用しています。
さらに指定行のデータを抜き出したいと思ったのですがデータストアを使用して抽出すことはできるのでしょうか。
采纳的回答
更多回答(1 个)
madhan ravi
2018-11-17
Read the while file using readtable() and then you can simply specify as such
T=readtable('mycsv.csv');
T.column %where T is your table and columns is the specific column you need
类别
在 帮助中心 和 File Exchange 中查找有关 テキスト ファイル 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!