Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
i need to get data from list box as matrix like if i have list box and have values i need to order value as matix
조회 수: 1 (최근 30일)
이전 댓글 표시
4
5
5
7
8
5
4
3
i want get matrix
a=[4 5 5 7;8 5 4 3];
댓글 수: 0
답변 (1개)
Walter Roberson
2016년 6월 9일
a = reshape( str2double(get(handles.listbox1, 'String')), [], 2);
댓글 수: 1
Walter Roberson
2016년 6월 9일
If the data is in two text columns in the listbox, then
a = str2num(get(handles.listbox1, 'String'));
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!