MATLAB tableについて
68 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
MATLABのtableを使用する際に、各列の配列名を取得するためには、どうすればよいのでしょうか。
↓A,Bをtableから抽出したいです。
例
A B
---------------------------------------
1| 43 44
2 Commenti
Risposta accettata
Shunichi Kusano
il 20 Feb 2024
次のようにアクセスできます。
t = table([43],[44],'VariableNames',{'A','B'})
t.Properties.VariableNames
5 Commenti
Dyuman Joshi
il 21 Feb 2024
"AとBを変数として使いたい場合はどのようにすればよろしいでしょうか"
Once again, why do you want to do that?
Più risposte (0)
Vedere anche
Categorie
Scopri di più su ビッグ データの処理 in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!