double to string in a cell
조회 수: 18 (최근 30일)
이전 댓글 표시
Hi, is there an easier way to convert from double to string in a cell?
Thank you
Left = {num2str(variable1)
num2str(variable2)
num2str(variable3)
etc...}
set(handles.Left_Listbox,'String',Left)
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2013년 6월 17일
편집: Azzi Abdelmalek
2013년 6월 17일
A={1 2 12 25}
B=cellfun(@num2str,A,'un',0)
댓글 수: 4
추가 답변 (1개)
참고 항목
카테고리
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!