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.

采纳的回答

madhan ravi
madhan ravi 2019-2-20
Str = sprintf('psd_c_%d_by_%d_shaded_%d',Nt,Bd,Ns)
doc sprintf % read it

更多回答(1 个)

Steven Lord
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 CenterFile Exchange 中查找有关 Number Theory 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by