How can i store string in cell without apostrophe?
조회 수: 3 (최근 30일)
이전 댓글 표시
I want to store say A50 in cell ..but i dont want apostrophes in it like 'A50'..how can i do it.?
I tried to use string to number and string to double but it didnot work.
Thanks in advance.
댓글 수: 0
채택된 답변
David Sanchez
2013년 7월 25일
M = cell(1,1);
str = 'A50';
str = char(str);
M{1} = str;
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Identification에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!