Why are the matrix numbers changing while converting table to matrix?
Afficher commentaires plus anciens
I have a table named "tres_big" of size (324 x 65). It's a time series dataset. I wanted it to convert to a matrix without the "Date" column so I removed that first. But when I applied the "table2array" function, the elements of the several columns changed to 0.
% removes the "Date" column from "tres_big"
tresc_big= removevars(tres_big,{'Date'});
% convert into matrix
data_big = table2array(tresc_big);
This is the original table:

This is what happens after I convert into matrix

What can I do to fix the problem? I would like to have the original numbers as in the table. I would appreciate any help.
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur LaTeX 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!