Justify character array.
Tj=justify(T,opt)
:T A matrix of character string. : :Tj A matrix of character string. the justified result : :opt A character option with possible values
:’r’ or ‘right’ for right justification : :’l’ or ‘left’ for left justification : :’c’ or ‘center’ for centering justification :
:
justify justify the column of a matrix of string accdording to the given option.
t=['1234','x','adfdfgdfghfgj'
'1','354556','dgf'
'sdfgd','','sdfsf'];
justify(t,'l')
justify(t,'c')
justify(t,'r')