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 visualización (últimos 30 días)
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.

Respuesta aceptada

Prince Kumar
Prince Kumar el 18 de Nov. de 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.

Más respuestas (0)

Categorías

Más información sobre Data Import from MATLAB en Help Center y File Exchange.

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by