テーブル内のデータをエクセルファイルに保存したい
    29 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    大輝 隅岡
 am 18 Jan. 2023
  
    
    
    
    
    Beantwortet: Jiro Doke
    
 am 7 Feb. 2023
            MATLAB App Designerでのテーブル内のデータをエクセルファイルに保存したいと考えています.
app.UITable.Data = {r,l,s};

わかる方がいれば教えていただきたいです.よろしくお願いします.
0 Kommentare
Akzeptierte Antwort
  Jiro Doke
    
 am 7 Feb. 2023
        質問のようにセル配列がテーブル内に格納されている場合は
writecell(app.UITable.Data,"data.xlsx")
で保存できます.
中身が数値配列の場合は
writematrix(app.UITable.Data,"data.xlsx")
になります.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!