Answers for "write text in figure matlab"

1

save a text matlab

fileID = fopen('A.txt','w');
fprintf(fileID,'%15s %15s %15srn','x','y','z');
nbytes = fprintf(fileID,'%15d %15d %15dn',A)
fclose(fileID);
Posted by: Guest on April-03-2020
0

print a text in matlab

disp('Text')
Posted by: Guest on October-09-2020

Browse Popular Code Answers by Language