Error using horzcat with num2str function for creating character class
1 次查看(过去 30 天)
显示 更早的评论
>>I am not understanding why the for double figure value, it is creating problems. Could anyone please help me with the situation?
Nt=10;Bd=9;Ns=1;
Str=['psd_c_',num2str(Nt),'_by_',num2str(Bd)','_shaded_',num2str(Ns)]
Str =
psd_c_10_by_9_shaded_1
But,
Nt=10;Bd=10;Ns=1;
Str=['psd_c_',num2str(Nt),'_by_',num2str(Bd)','_shaded_',num2str(Ns)]
Error using horzcat
Dimensions of matrices being concatenated are not consistent.
0 个评论
采纳的回答
madhan ravi
2019-2-20
Str = sprintf('psd_c_%d_by_%d_shaded_%d',Nt,Bd,Ns)
doc sprintf % read it
2 个评论
Stephen23
2019-2-20
@MD RAQUIBUZZAMAN: you should accept madhan ravi's answer if it resolves your question.
更多回答(1 个)
Steven Lord
2019-2-20
You have one extra ' after your second num2str call. That's not a problem when Bd is a number with just one digit (the transpose of '5' is '5', for example) but becomes a problem when Bd is not an integer between 0 and 9 inclusive (the transpose of '10' has two rows.)
There are a couple possible solutions:
- You could remove that extra '.
- You could use sprintf as madhan ravi suggested.
- You could use a string array as shown below.
Nt=10;
Bd=10;
Ns=1;
Str="psd_c_" + Nt + "_by_" + Bd + "_shaded_" + Ns
Depending on the release you're using, many of the functions that accept char array inputs will accept string inputs. If I had to guess I'd say you want to use this as a file name or as the title, xlabel, ylabel, etc. of an axes. At least in release R2018b that should work though you'd want to specify the 'Interpreter' property of the title so the underscore characters are displayed as underscores not interpreted as subscripts.
title(Str, 'Interpreter', 'none')
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!