How can I convert several tables into cell arrays

3 vues (au cours des 30 derniers jours)
Antonio Melieni
Antonio Melieni le 30 Mar 2019
Modifié(e) : Stephen23 le 31 Mar 2019
Hi :)
I have 6 tables in my workspace and I want to convert them all into cell arrays.
Is this possilble by a loop for example? I dont want to convert every table in an extra step
Thx :)
  10 commentaires
Antonio Melieni
Antonio Melieni le 30 Mar 2019
First of all, thanks for your help :)
Im writing my bachelorthesis about foreign exchange rates
I have to do a timeseries analysis of minutley based data from 01.01.18-01.01.19 of four currency pairs. The datasets came as csv files.
I have to calculate several variables like the price, which for example ist the mean of (bid and ask price)/2, volatility and so on.
Attached you find a screen shot, as i couldnt upload some data....
Sorry for the stupid questions but im using matlab since 5 days and i had no lessons at all and 8 weeks to finish my thesis....
Stephen23
Stephen23 le 31 Mar 2019
Modifié(e) : Stephen23 le 31 Mar 2019
As dpb and Guillaume have already mentioned, don't stick meta-data (e.g. numbers, test-case names, parameter values, etc) into your variable names (unless you want to force yourself into writing slow, complex, buggy code that is hard to debug). Just use indexing. Indexing is simple and very efficient.
"The datasets came as csv files."
Then just follow the MATLAB documentation examples for importing multiple files:
Import the data as a numeric array or a table or whatever works best, and simply store them in one cell array using indexing:
"How can I convert several tables into cell arrays"
It is unlikely that this is necessary or even a good way to achieve your goal. Just access the data directly from the table (in the cell array).

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by