Data transfer from excel to matlab!
Afficher commentaires plus anciens
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.
Réponse acceptée
Plus de réponses (1)
madhan ravi
le 21 Déc 2018
0 votes
Use readtable() to read the excel file
6 commentaires
Abdullah Türk
le 21 Déc 2018
madhan ravi
le 21 Déc 2018
Use cell arrays then to hold double arrays
Abdullah Türk
le 21 Déc 2018
madhan ravi
le 21 Déc 2018
can you post the code that you are trying?
Abdullah Türk
le 21 Déc 2018
madhan ravi
le 21 Déc 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]'
Catégories
En savoir plus sur Spreadsheets dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
