how to convert vector in string as example

조회 수: 2 (최근 30일)
Luca Re
Luca Re 2023년 9월 2일
댓글: Voss 2023년 9월 2일
Input: c and a
c=1;
a=[4 7]
"cnt 1 - [4 7]"
c=2;
a=[8 9]
"cnt 2 - [8 9]"

채택된 답변

Voss
Voss 2023년 9월 2일
c=1; 
a=[4 7]
sprintf("cnt %d - [",c) + num2str(a) + "]"
  댓글 수: 4
Luca Re
Luca Re 2023년 9월 2일
thank you
Voss
Voss 2023년 9월 2일
You're welcome!

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

추가 답변 (1개)

Alexander
Alexander 2023년 9월 2일
My solution:
c=1;
a=[4 7]
resultTxT =['"cnt ' num2str(c) ' - [' num2str(a) ']"']

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by