Data transfer from excel to matlab!
Show older comments
Hello to everyone
I want data transfer from excel to matlab. You can see the matrix I want to create in the image.

For example, I want to create [1 1 1] where the matrix intersects the first row and column. How can I do that? Thanks.
Accepted Answer
More Answers (1)
madhan ravi
on 21 Dec 2018
0 votes
Use readtable() to read the excel file
6 Comments
Abdullah Türk
on 21 Dec 2018
madhan ravi
on 21 Dec 2018
Use cell arrays then to hold double arrays
Abdullah Türk
on 21 Dec 2018
madhan ravi
on 21 Dec 2018
can you post the code that you are trying?
Abdullah Türk
on 21 Dec 2018
madhan ravi
on 21 Dec 2018
T=readtable('matrix.xls')
Gives:
Warning: Variable names were modified to make them valid MATLAB identifiers. The
original names are saved in the VariableDescriptions property.
T =
4×5 table
x_111_ x_1_91_71_5_ x_1_51_31_ x_111__1 x_135_
_____________ _______________ _______________ _____________ _________
'[5 7 9]' '[1 1 1]' '[5 7 9]' '[1 1 1]' '[3 5 7]'
'[1 3 5]' '[1/9 1/7 1/5]' '[1 1 1]' '[1/5 1/3 1]' '[3 5 7]'
'[1 1 1]' '[1 1 1]' '[1 3 5]' '[1 1 1]' '[1 1 1]'
'[1/5 1/3 1]' '[1/7 1/5 1/3]' '[1/7 1/5 1/3]' '[1 1 1]' '[1 1 1]'
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!