Data transfer from excel to matlab!
이전 댓글 표시
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.
채택된 답변
추가 답변 (1개)
madhan ravi
2018년 12월 21일
0 개 추천
Use readtable() to read the excel file
댓글 수: 6
Abdullah Türk
2018년 12월 21일
madhan ravi
2018년 12월 21일
Use cell arrays then to hold double arrays
Abdullah Türk
2018년 12월 21일
madhan ravi
2018년 12월 21일
can you post the code that you are trying?
Abdullah Türk
2018년 12월 21일
madhan ravi
2018년 12월 21일
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]'
카테고리
도움말 센터 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
