I want to insert the symbol +- (\\pm) between x and y in table created in matlab
x = (1:1:5)\'; y = x*5/100; table = [x y]
So, that the out
With output as a text file use the format spec for fprintf such as
FileID=fopen('FileName.txt','w'); fprintf(FileID,['%1.4f ',177,' %1.4f\n'],[x';y'])