Hi, I've imported some data from Excel in .xlsx extension with "xlsReadSA". Next, I want to specify that these data are a matrix. Can someone help me?
2 Answers
0
xlsReadSA
, reads data in as a string array. You can convert the data from a string array to numeric data.
However, you should use xlsReadM
instead of xlsReadSA
, because xlsReadM
will load the data from the Excel file as a matrix automatically.
0
Thanks a lot!
Your Answer
2 Answers
0
xlsReadSA
, reads data in as a string array. You can convert the data from a string array to numeric data.
However, you should use xlsReadM
instead of xlsReadSA
, because xlsReadM
will load the data from the Excel file as a matrix automatically.
0
Thanks a lot!