Read Time from the column of CSV file for plotting purpose

1 回表示 (過去 30 日間)
Kapil Singh Rathore
Kapil Singh Rathore 2020 年 2 月 1 日
Hello
Please find the attached csv, here column 1 shows the time and column 2 shows spo2 data recorded at that point of time. I am trying to read this csv file and plot this with
column 1 (time data) as x-axis and column 2 (spo2 data) as y-axis.
Please suggest me appropriate code for the execution.

採用された回答

Mohammad Sami
Mohammad Sami 2020 年 2 月 1 日
readtable should work just fine with your data.
a = readtable('Moxy.csv');
plot(a.hh_mm_ss,a.SmO2Live)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Import and Analysis についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by