How to convert arrays to strings in bulk at the same time similar with the function itoa in C language

조회 수: 2 (최근 30일)
Recently, I try to converts numbers into strings in bulk, but I find the function num2str cost a long time if I convert them one by one with the command for.
Take an example in Matlab
A=ones(1e9,1);
for i=1:1e9
x=num2str(A(i));
end
The time it costs is related to the size of A, I want to convert arrays to strings in bulk at the same time so that the cost time has nothing to do with scale.

채택된 답변

madhan ravi
madhan ravi 2019년 4월 2일
""+A
%or
string(A)
  댓글 수: 3

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Numeric Types에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by