필터 지우기
필터 지우기

How can I convert several tables into cell arrays

조회 수: 5 (최근 30일)
Antonio Melieni
Antonio Melieni 2019년 3월 30일
편집: Stephen23 2019년 3월 31일
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
Antonio Melieni
Antonio Melieni 2019년 3월 30일
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 2019년 3월 31일
편집: Stephen23 2019년 3월 31일
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).

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by