フィルターのクリア

presenting result in a table

4 ビュー (過去 30 日間)
Esegboria Osarhemen
Esegboria Osarhemen 2019 年 3 月 3 日
コメント済み: Rena Berman 2019 年 3 月 5 日
How can I create a matrix/table like the one in the attached photo using the given data
  1 件のコメント
Rena Berman
Rena Berman 2019 年 3 月 5 日
(Answers Dev) Restored edit

サインインしてコメントする。

回答 (1 件)

Sheng Chen
Sheng Chen 2019 年 3 月 3 日
You can try table():
LastName = {'Sanchez';'Johnson';'Li';'Diaz';'Brown'};
Age = [38;43;38;40;49];
Smoker = logical([1;0;1;0;1]);
Height = [71;69;64;67;64];
Weight = [176;163;131;133;119];
BloodPressure = [124 93; 109 77; 125 83; 117 75; 122 80];
T = table(LastName,Age,Smoker,Height,Weight,BloodPressure);
Also, please refer to Table array with named variables that can contain different types and see if this is what you want.

カテゴリ

Help Center および File ExchangeTables についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by