Error using horzcat with num2str function for creating character class

조회 수: 2 (최근 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
  댓글 수: 2
Stephen23
Stephen23 2019년 2월 20일
MD RAQUIBUZZAMAN'S "Answer" moved here:
Thank you. very much.
Stephen23
Stephen23 2019년 2월 20일
@MD RAQUIBUZZAMAN: you should accept madhan ravi's answer if it resolves your question.

댓글을 달려면 로그인하십시오.

추가 답변 (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