How to combine data from two columns into a single column?

조회 수: 2 (최근 30일)
Marissa Holden
Marissa Holden 2017년 9월 8일
댓글: Marissa Holden 2017년 9월 8일
I have a variable called "time" = which contains the time of something but it's in 2 columns i.e time=[15,31] (this is hours and minutes, so the time is 3:31). I want to create a variable that compresses this, so time would be 15.31 in a single column, how would I do this?

채택된 답변

KSSV
KSSV 2017년 9월 8일
time = [10 1; 14 3 ; 15 6] ;
str = repmat('.',size(time,1),1) ;
iwant = str2num([num2str(time(:,1)),str, num2str(time(:,2))])

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by