error using msg box

6 ビュー (過去 30 日間)
kash
kash 2012 年 4 月 6 日
NN=[21 25;20 26]
msgbox(['the value is ',num2str(NN)])
i get error as
Error using horzcat CAT arguments dimensions are not consistent.
Error in Untitled (line 26) msgbox(['the value is ',num2str(NN)])
please help

採用された回答

Davide Ferraro
Davide Ferraro 2012 年 4 月 6 日
You are trying to concatenate a vector (your text) with a matrix. The dimensions are not consistent. You can use the CHAR function to automatically add some spaces to build a full matrix:
msgbox(char('the value is ',num2str(NN)))

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by