フィルターのクリア

Matrix output in live script doesn't display more than 5 columns

8 ビュー (過去 30 日間)
Steffen Weerheijm
Steffen Weerheijm 2017 年 3 月 6 日
回答済み: Wesley Ratnakumar 2020 年 1 月 24 日
Matrix outputs in a live script doesn't display more than 5 columns, but there are 7 columns in the variable.
The version I'm using is 2017a (prerelease), so it might be a bug?
Here you see variable oplH having 7 columns, but you can only see the first 5.
The code:
H = [2 0 0 -1 0 0 0; %Cu
1 0 0 0 0 -8 0; %S
0 1 0 0 0 0 -2; %H
0 0 1 0 -1 0 0; %N
0 0 3 0 -1 0 -1]; %O
oplH = 2*rref(H)

回答 (2 件)

Wesley Ratnakumar
Wesley Ratnakumar 2020 年 1 月 24 日
Use disp(variable),
in the next line to get the output insted of leaving an open semi-colon. This will show the output as in your command prompt.
i.e. disp(H) in your case.
I have tried this in 2019a and 2018b.

Markus Suuronen
Markus Suuronen 2018 年 11 月 17 日
I had a similar problem, which was fixed when I added
format short
to the beginning of the live script.

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by