Convert the Contents of matrix array (double) to single number (double) ?

18 views (last 30 days)
Vect_Time_report = [2019,3,22,15,53,37] ;
I need Converted_Vect_Time_report = 2019322155337

Accepted Answer

Pruthvi G
Pruthvi G on 16 Apr 2019
Converted_Vect_Time_report = str2double(sprintf('%d',Vect_Time_style)) ;

More Answers (0)

Categories

Find more on Data Types in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!