Info

This question is closed. Reopen it to edit or answer.

forming tables from variables

2 views (last 30 days)
Kareem AlBokhari
Kareem AlBokhari on 23 Sep 2015
Closed: MATLAB Answer Bot on 20 Aug 2021
I have set of values from equations and want to place in a table , ex for station 1 I have 3 values I want the placed in one coloumn . I want to do that for 10 stations each station 3 values placed in on column and each column labeled and the rows labeled I want them in a table .
THANKS

Answers (1)

Walter Roberson
Walter Roberson on 23 Sep 2015
table(station1(:), station2(:), station3(:), ... station10(:), 'VariableNames', {'Dresden', 'Hollywood', 'Tokyo', 'WPRK', ... 'station10'})
  1 Comment
Kareem AlBokhari
Kareem AlBokhari on 23 Sep 2015
i dont have numbered stations i just gave an exmaple i have only values to be placed in a table

Community Treasure Hunt

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

Start Hunting!