MATLAB tableについて
185 次查看(过去 30 天)
显示 更早的评论
MATLABのtableを使用する際に、各列の配列名を取得するためには、どうすればよいのでしょうか。
↓A,Bをtableから抽出したいです。
例
A B
---------------------------------------
1| 43 44
2 个评论
采纳的回答
Shunichi Kusano
2024-2-20
次のようにアクセスできます。
t = table([43],[44],'VariableNames',{'A','B'})
t.Properties.VariableNames
5 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 ビッグ データの処理 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!