Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Errors in using string and vector together

2 ビュー (過去 30 日間)
Amit Kumar
Amit Kumar 2014 年 10 月 1 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Hi I want to display string and vector of floating point numbers together, but matlab flags error - 'dimensions of matrices are not consistent'.
Here is code:
str = {'A ';'B ','C '};
arr=[1;2;3];
disp([str,arr]);
I want to display like this
A 1
B 2
C 3
Is there any alternative way? I am also interested to know how to create vector of string like
A
B
C
Any ideas? Thanks a lot!

回答 (1 件)

dpb
dpb 2014 年 10 月 1 日
編集済み: dpb 2014 年 10 月 1 日
>> disp([char(str) num2str(arr,' %d')])
A 1
B 2
C 3
>>
disp only takes a single argument and have to dereference the cell array and combine into character string array. To be able to concatenate to the numeric array, have to convert them to string as well.
Looping and fprintf is often just as simple to handle each row at a time.
For the latter ?, Matlab doesn't care whether the inputs to colon are characters...
>> ['A':'C'].'
ans =
A
B
C
>>

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by