Hi
i have a timetable imported from excel with undefined number or variables (number of usable variables change depending on situation).
Is there a possibility to extract all the variables with names that are written on top row of timetable as array into MATLAB?
e.g.: tempC = [11, 11, 11, 11, ....]
windspeed = [7.00, 7.00, 7.00, ...]
thanks for your help!

댓글 수: 3

It is not recommended to do what you are asking.
You can easily access the individual variables using . notation as follows.
timetable_csv.TempC
Sehoon Chang
Sehoon Chang 2020년 9월 3일
thank you both for your comment! :)

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

 채택된 답변

VBBV
VBBV 2020년 9월 3일

0 개 추천

tempC = timetable_csv{:}{2};
windspeed = timetable_csv{:}{3};
timestamp = timetable_csv{:}{1};

댓글 수: 1

madhan ravi
madhan ravi 2020년 9월 3일
Please format your code by pressing the code button.

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Variables에 대해 자세히 알아보기

질문:

2020년 9월 2일

댓글:

2020년 9월 3일

Community Treasure Hunt

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

Start Hunting!

Translated by