Clear Filters
Clear Filters

How to save a text file with number and text information?

3 views (last 30 days)
Hello, I have on my MATLAB code some variables containing values and filenames. Ex: lat1=1.2; lat2=3.2; long1=-44; long2=-34; grd=‘map.grd’; fault=‘fault.txt’; I would like to save one file in any output text format to be read by another code with a Shell code. Ex: file.txt containing all informations inside (1.2 3.2 -44 -34 map.grd fault.txt). I tried to use the writetable function as I have used before but it just work to values, it shows error when I tried to include the filenames (e.g map.grd). Does someone have any suggestion? Thanks in advance.

Accepted Answer

Voss
Voss on 1 Mar 2024
Put the filenames in cell arrays.
Example:
lat1=1.2; lat2=3.2; long1=-44; long2=-34; grd='map.grd'; fault='fault.txt';
% first, I generate the error you might have gotten:
try
T = table(lat1,lat2,long1,long2,grd,fault) % doesn't work
catch e
disp(e.message);
end
Invalid parameter name: map.grd.
% now, I put grd and fault in cell arrays:
T = table(lat1,lat2,long1,long2,{grd},{fault}) % works
T = 1×6 table
lat1 lat2 long1 long2 Var5 Var6 ____ ____ _____ _____ ___________ _____________ 1.2 3.2 -44 -34 {'map.grd'} {'fault.txt'}
% write the table to file:
writetable(T,'file.txt')
% check the contents of the txt file:
type file.txt
lat1,lat2,long1,long2,Var5,Var6 1.2,3.2,-44,-34,map.grd,fault.txt
  5 Comments
Guilherme Weber Sampaio de Melo
Yes, it worked well to continue the following steps on my code. Thank you very much!

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!