Database toolbox downloading individual data as cell arrays

2 visualizaciones (últimos 30 días)
Azura Hashim
Azura Hashim el 20 de Jul. de 2016
Respondida: Azura Hashim el 22 de Jul. de 2016
Hi, I am using database toolbox to fetch data using MySql. However the fetched data matrix consists of individual values as cell arrays. How can I download the data as a matrix consisting as simple values? I simply want to download the entire table as a simple matrix. Thanks.

Respuestas (2)

Guillaume
Guillaume el 20 de Jul. de 2016
I don't have the database toolbox but I assume it returns the contents of a table as a cell array because there is no guarantee that the columns are numeric and never empty.
If you are sure that the columns are always numeric and never empty, then:
dataasmatrix = cell2mat(yourfetcheddata)

Azura Hashim
Azura Hashim el 22 de Jul. de 2016
Excellent, this works. Thanks for your help.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by