データストアを使用し、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!