How to plot csv files in matlab

5 ビュー (過去 30 日間)
shanmugasundaram saravanan
shanmugasundaram saravanan 2016 年 7 月 26 日
回答済み: Star Strider 2016 年 7 月 26 日
I am using Bioradio. I have used it for recording emg in onboard memory. Using data import of Biocapture software I have converted dat file into csv file. To export csv file from Biocapture into matlab and ploting it in matlab what I have to do.

回答 (1 件)

Star Strider
Star Strider 2016 年 7 月 26 日
It depends on what is in your .csv file. A safe option is to use the xlsread function:
[num,str,raw] = xlsread('file.csv');
The ‘num’ variable has the numeric values as a matrix, ‘str’ has the string information in a cell array, and ‘raw’ has everything in the file as a cell array.

カテゴリ

Help Center および File ExchangeString Parsing についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by