how can i convert table of string to a single row vector
조회 수: 13 (최근 30일)
이전 댓글 표시
i want to make a single vector of transcript character as a single row without these symbols " "
댓글 수: 0
답변 (2개)
Voss
2022년 11월 28일
Something like this?
% making a table like yours:
transcript = table(["the"; "discreet"; "forier"; "transform"; "of"],[0.99085; 0.89288; 0.92346; 0.87114; 0.74899], ...
'VariableNames',{'Transcript' 'Confidence'})
% make a row vector of the words in the first column:
result = sprintf('%s',transcript{:,1})
% or maybe this is better:
result = sprintf('%s ',transcript{:,1});
result(end) = ''
댓글 수: 0
Seth Furman
2022년 11월 28일
Better yet, just call join on the Transcript variable
transcript = table(["the"; "discreet"; "forier"; "transform"; "of"],[0.99085; 0.89288; 0.92346; 0.87114; 0.74899], ...
'VariableNames',{'Transcript' 'Confidence'})
join(transcript.Transcript)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!