フィルターのクリア

writetable change "Row" in cell A1

4 ビュー (過去 30 日間)
David
David 2015 年 4 月 7 日
編集済み: Leon 2024 年 2 月 15 日
I'm familiar with the writetable function to save a table as an Excel file. I regularly use the WriteRowNames option to include the row names in the file. However, when Matlab writes the file it always write "Row" as the title of the series above the row names in cell A1 of the Excel file. Is there any way to change this label?

採用された回答

Peter Perkins
Peter Perkins 2015 年 4 月 8 日
David, you can set the dimension names property, such as
data.Properties.DimensionNames{1} = 'SomethingOtherThanRow';
Hope this helps.
  1 件のコメント
Leon
Leon 2024 年 2 月 15 日
編集済み: Leon 2024 年 2 月 15 日
Very helpful! One minor correction: I found I needed to use brackets rather than curly braces:
my_table.Properties.DimensionNames(1) = "SomethingOtherThanRow";

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTables についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by