MATLAB: 1D Matrix element shifting

matrixmatrix manipulation

for example:
a=[how are you?]; i want to append a string into the front of the array…
eg: the string is "hello,"
output matrix like: a=[hello, how are you]

Best Answer

a=['how are you?'];
out = ['hello, ',a]
Related Question