Effacer les filtres
Effacer les filtres

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 vue (au cours des 30 derniers jours)
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.

Réponse acceptée

Prince Kumar
Prince Kumar le 18 Nov 2021
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.

Plus de réponses (0)

Catégories

En savoir plus sur Data Import from MATLAB dans Help Center et File Exchange

Produits


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by