Display format for table and matrix in live script

162 ビュー (過去 30 日間)
byungkeuk cho
byungkeuk cho 2019 年 11 月 22 日
コメント済み: David Beedie 2024 年 1 月 8 日
Hi,
I am trying to write a report with live script editor.
but I have a very simple question.
First, I would like to eliminate the number of row index as shown below.
(1 Row1 is not what i want)
Second, I would like to display a matrix with a bracket.
  1 件のコメント
David Beedie
David Beedie 2024 年 1 月 8 日
disp() eliminates the row numbers:
rowNames = {'row1'; 'row2'; 'row3'};
Column1 = [1; 2; 3];
Column2 = [4; 5; 6];
T = table(Column1, Column2, 'rowNames', rowNames)
disp(T)

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

採用された回答

Song-Hyun Ji
Song-Hyun Ji 2019 年 11 月 25 日
編集済み: Song-Hyun Ji 2019 年 11 月 26 日
About the first question, unfortunately there is no way to remove row numbers for the table in the Live Editor. We will consider creating a feature to turn off the default row numbers when row names are provided.
About the second question, please refer to the following article.

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2019 年 11 月 22 日
table() is not designed for display purposes. To customize it, you pretty much need to use Report Generator.
How would you like the brackets around the array to look?
>> sym(A)
ans =
[ 1, 2, 3]
[ 4, 5, 6]
Or you could create "ASCII Art" that might look something like
+- -+
| 1, 2, 3|
| 4, 5, 6|
+- -+
A routine would have to be written to do this.
  2 件のコメント
byungkeuk cho
byungkeuk cho 2019 年 11 月 22 日
Thank you for your answer.
sym(A) is not what i want.
This is the format i want.
1.jpg
And concerning table, if you say so, i would like to find another function that helps to visualize a table in the live script.
Walter Roberson
Walter Roberson 2019 年 11 月 22 日
You would need to draw the brackets using plot() and text() the numbers into place. Or you could use Computer Vision insertText and insertShape to create images that you displayed.
If your hope is display those kinds of formatted items at the command line, then you will need to wait for some later release, or hack the display mechanism.

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

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by