I need to put the put the datas given under "group 3" in this attached excel file to two different arrays and plot them but i can't becuase they are writtien with a comma ","

1 回表示 (過去 30 日間)
I need to put the put the datas given under "group 3" in this attached excel file to two different arrays and plot them but i can't becuase they are writtien with a comma "," how can i solve this issue? i also need to do some calculations with these datas.

採用された回答

Prince Kumar
Prince Kumar 2021 年 11 月 18 日
Hi Erdem Turan,
You can do it using "readtable" and "table2array" functions.
T = readtable('TensileTest_Data(1).xls');
x = table2array(T(:,7));
y = table2array(T(:,8));
Here 'x' and 'y' are the variable having the contents of "group 3". Now you can perform the calculations on this data.

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by