My question is so simple~ code is :
name={'ab','ac','ad','ae'};
xlswrite('outex1',name);
what I get :
a b a c a d a e
but I want:
ab ac ad ae
I try many different way, but I still not get what I want. I am using 2013b version of matlab
name={'ab','ac','ad','ae'};
name = strjoin(name);
xlswrite('outex1',name);
Try this.
xlswrite in MATLAB in Mac has a issue. If you execute what you typed in Windows, it is working fine.