Converting an array of doubles to a string

조회 수: 45 (최근 30일)
Jason
Jason 2021년 1월 27일
댓글: Jason 2021년 1월 30일
Whats the best way to convert v which is a class double.
v =
0 0 2736 1824
ans =
'double'
I tried this
v=vidobj.ROIPosition %Get default ROI
class(v)
nv=numel(v);
strROI='';
for i=1:nv
strROI=strROI+char(v(i))
end
strROI
I want to display it in an editbox
app.Edit1.Value=strROI

채택된 답변

David Hill
David Hill 2021년 1월 27일
How do you want it displayed?
v=[0,0,2736,1824];
d=num2str(v);%once it is a character array you can manipulate it as you desire use sprintf() or regexp()

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by