필터 지우기
필터 지우기

generate a string with the numbers 1:999

조회 수: 16 (최근 30일)
Alberto Acri
Alberto Acri 2023년 6월 16일
편집: Mayur 2023년 6월 16일
Hello! I need to generate a string with the numbers 1:999.
I wrote these lines of code:
row_number = 1:999;
column_number = row_number.';
conversion_column_number = num2str(column_number);
I want to eliminate the two spaces that are created before the numbers 1:9 and the space that is created between the numbers 10:99 in conversion_column_number. Is there a solution to this problem?

채택된 답변

Malay Agarwal
Malay Agarwal 2023년 6월 16일
편집: Malay Agarwal 2023년 6월 16일
Hi, Alberto
Please try the following code:
row_number = 1:999;
column_number = row_number.';
conversion_column_number = string(column_number);
This has the following output:
According to MATLAB documentation, the function num2str() converts the input array to a character array and MATALB makes sure that each element in a character array is of the same size, which is why you're getting the spaces.

추가 답변 (1개)

Mayur
Mayur 2023년 6월 16일
편집: Mayur 2023년 6월 16일
Hi!
I understand that you want to convert 'column_number' to a string without extra spaces.
You can use the 'string' function instead of 'num2str' here.
row_number = 1:999;
column_number = row_number.';
conversion_column_number = string(column_number);
Alternatively, you can try with this.
row_number = 1:999;
column_number = row_number.';
conversion_column_number = "" + column_number;
For more information you can refer the following documentation: https://www.mathworks.com/help/matlab/ref/string.html
  댓글 수: 1
Stephen23
Stephen23 2023년 6월 16일
편집: Stephen23 2023년 6월 16일
"For more information you can refer the following documentation..."
Rather than linking to the Stateflow toolbox's overloaded STRING function, much better would be a link to the actual MATLAB STRING function:
Always pay attention to the toolbox!

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

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by