c=1; a=[4 7] sprintf("cnt %d - [",c) + num2str(a) + "]"
how to convert vector in string as example
조회 수: 2 (최근 30일)
이전 댓글 표시
Input: c and a
c=1;
a=[4 7]
"cnt 1 - [4 7]"
c=2;
a=[8 9]
"cnt 2 - [8 9]"
댓글 수: 0
채택된 답변
추가 답변 (1개)
Alexander
2023년 9월 2일
My solution:
c=1;
a=[4 7]
resultTxT =['"cnt ' num2str(c) ' - [' num2str(a) ']"']
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!