MATLAB tableについて
68 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
晃平
el 20 de Feb. de 2024
Comentada: 晃平
el 26 de Feb. de 2024
MATLABのtableを使用する際に、各列の配列名を取得するためには、どうすればよいのでしょうか。
↓A,Bをtableから抽出したいです。
例
A B
---------------------------------------
1| 43 44
2 comentarios
Respuesta aceptada
Shunichi Kusano
el 20 de Feb. de 2024
次のようにアクセスできます。
t = table([43],[44],'VariableNames',{'A','B'})
t.Properties.VariableNames
5 comentarios
Dyuman Joshi
el 21 de Feb. de 2024
"AとBを変数として使いたい場合はどのようにすればよろしいでしょうか"
Once again, why do you want to do that?
Más respuestas (0)
Ver también
Categorías
Más información sobre ビッグ データの処理 en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!