MATLABでテーブ​ルの列名を抽出するに​はどうしたらよいです​か?

4 次查看(过去 30 天)
MathWorks Support Team
MathWorks Support Team about 14 hours 前
回答: MathWorks Support Team about 8 hours 前

MATLABで特定のテーブルの列名を抽出する方法を教えていただけますか?

采纳的回答

MathWorks Support Team
MathWorks Support Team about 14 hours 前
「table」オブジェクトについて:
以下のようにテーブルを作成した場合を考えます。
LastName = ["Sanchez"; "Johnson"; "Li"; "Diaz"; "Brown"]; Age = [38; 43; 38; 40; 49]; Smoker = logical([1; 0; 1; 0; 1]); T = table(LastName, Age, Smoker);
このテーブル T の列名を抽出するには、T.Properties.VariableNames を使用します。
T.Properties.VariableNames
出力は次のようになります。
ans = 1×3 cell array {'LastName'} {'Age'} {'Smoker'}
特定の列名を取得するには、インデックスを指定します。例えば、2番目の列名を取得するには以下のようにします。
T.Properties.VariableNames{2}
出力は次のようになります。
ans = 'Age'
「uitable」オブジェクトについて:
以下のように uitable を作成した場合を考えます。
f = figure("Position", [200 200 400 150]); dat = rand(3); cnames = ["X-Data", "Y-Data", "Z-Data"]; rnames = ["First", "Second", "Third"]; t = uitable("Parent", f, "Data", dat, "ColumnName", cnames, ... "RowName", rnames, "Position", [20 20 360 100]);
この uitable の列名を取得するには、get 関数を使用します。
get(t, "ColumnName")
出力は次のようになります。
ans = 3×1 cell array {'X-Data'} {'Y-Data'} {'Z-Data'}

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 ビッグ データの処理 的更多信息

标签

尚未输入任何标签。

产品


版本

R2024a

Community Treasure Hunt

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

Start Hunting!