Why writetable() adds ' 'true ' table element as ''table?

12 ビュー (過去 30 日間)
Chen David Gongwei
Chen David Gongwei 2019 年 8 月 2 日
回答済み: Jeremy Hughes 2019 年 8 月 2 日
Here is how my MATLAB table transitionsTable looks like:
I added a single quote before true and false so that Excel won't interpret them as special words.
But when I do:
writetable(transitionsTable,excel_file,'Sheet',1,'Range','C1')
'true and 'false show up in Excel cells like this:
It looks fine, but those single quotes aren't suppose to show. When I double-click on one of them, it becomes:
  1 件のコメント
Walter Roberson
Walter Roberson 2019 年 8 月 2 日
Excel has strange display rules for text. These days I just assume that excel might be lying about the actual content of text cells.

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

回答 (1 件)

Jeremy Hughes
Jeremy Hughes 2019 年 8 月 2 日
I think this is a case where using strings would make things more clear.
In MATLAB, if I create a char vector and put a single-quote in it, that looks like
c = '...''...'
If I do this with a string, I can avoid the escaping.
s = "...'..."
It may be the case that the char vectors in your data have two single-quotes, which display as one in MATLAB.
try
string(transitionsTable.transition) to see if that's what's happening

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by