필터 지우기
필터 지우기

print numeric array as list with commas

조회 수: 113 (최근 30일)
lightroman
lightroman 2017년 11월 27일
댓글: Dyuman Joshi 2024년 2월 25일
I cant figure out how to print a = 1:10 as 1,2,3,4,5,6,7,8,9,10
  댓글 수: 1
Dyuman Joshi
Dyuman Joshi 2024년 2월 25일
(Assuming the values are integers which can be represented in double precision) With newer versions, you can use strings like this -
a = 1:10;
b = strjoin(string(a), ',')
b = "1,2,3,4,5,6,7,8,9,10"

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

채택된 답변

Walter Roberson
Walter Roberson 2017년 11월 27일
regexprep( mat2str(a), {'\[', '\]', '\s+'}, {'', '', ','})
or
[sprintf('%d,', a(1:end-1)), sprintf('%d', a(end))];
or
temp = sprintf('%d,', a);
temp(end) = []; %get rid of trailing comma

추가 답변 (1개)

CM
CM 2024년 2월 25일
Here's one more possibillity in one line using strip:
a = 1:10;
sprintf("%s", strip(sprintf("%d,", a), ","))
% ans = "1,2,3,4,5,6,7,8,9,10"
It has the advantage that one can simultaneously add characters (like surrounding brackets) to the string formatting, control the number formatting (like decimal places), and use non-indexable input (like function calls), e.g.:
sprintf("[%s]", strip(sprintf("%.2f,", linspace(1,10,10)), ","))
% ans = "[1.00,2.00,3.00,4.00,5.00,6.00,7.00,8.00,9.00,10.00]"

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by