Write data to text file (2024)

Write data to text file

collapse all in page

Syntax

fprintf(fileID,formatSpec,A1,...,An)

fprintf(formatSpec,A1,...,An)

nbytes = fprintf(___)

Description

example

fprintf(fileID,formatSpec,A1,...,An) appliesthe formatSpec to all elements of arrays A1,...An incolumn order, and writes the data to a text file. fprintf usesthe encoding scheme specified in the call to fopen.

example

fprintf(formatSpec,A1,...,An) formats data and displays the results on the screen.

example

nbytes = fprintf(___) returnsthe number of bytes that fprintf writes, usingany of the input arguments in the preceding syntaxes.

Examples

collapse all

Print Literal Text and Array Values

Open Live Script

Print multiple numeric values and literal text to the screen.

A1 = [9.9, 9900];A2 = [8.8, 7.7 ; ... 8800, 7700];formatSpec = 'X is %4.2f meters or %8.3f mm\n';fprintf(formatSpec,A1,A2)
X is 9.90 meters or 9900.000 mmX is 8.80 meters or 8800.000 mmX is 7.70 meters or 7700.000 mm

%4.2f in the formatSpec input specifies that the first value in each line of output is a floating-point number with a field width of four digits, including two digits after the decimal point. %8.3f in the formatSpec input specifies that the second value in each line of output is a floating-point number with a field width of eight digits, including three digits after the decimal point. \n is a control character that starts a new line.

Print Double-Precision Values as Integers

Open Live Script

Explicitly convert double-precision values with fractions to integer values.

135

%d in the formatSpec input prints each value in the vector, round(a), as a signed integer. \n is a control character that starts a new line.

Write Tabular Data to Text File

Write a short table of the exponential functionto a text file called exp.txt.

x = 0:.1:1;A = [x; exp(x)];fileID = fopen('exp.txt','w');fprintf(fileID,'%6s %12s\n','x','exp(x)');fprintf(fileID,'%6.2f %12.8f\n',A);fclose(fileID);

The first call to fprintf prints headertext x and exp(x), and the secondcall prints the values from variable A.

If you plan to read the file with Microsoft® Notepad,use '\r\n' instead of '\n' tomove to a new line. For example, replace the calls to fprintf withthe following:

fprintf(fileID,'%6s %12s\r\n','x','exp(x)');fprintf(fileID,'%6.2f %12.8f\r\n',A);

MATLAB® import functions, all UNIX® applications, and Microsoft Word andWordPad recognize '\n' as a newline indicator.

View the contents of the file with the type command.

type exp.txt
 x exp(x) 0.00 1.00000000 0.10 1.10517092 0.20 1.22140276 0.30 1.34985881 0.40 1.49182470 0.50 1.64872127 0.60 1.82211880 0.70 2.01375271 0.80 2.22554093 0.90 2.45960311 1.00 2.71828183

Get Number of Bytes Written to File

Open Live Script

Write data to a file and return the number of bytes written.

Write an array of data, A, to a file and get the number of bytes that fprintf writes.

A = magic(4);fileID = fopen('myfile.txt','w');nbytes = fprintf(fileID,'%5d %5d %5d %5d\n',A)
nbytes = 96

The fprintf function wrote 96 bytes to the file.

Close the file.

fclose(fileID);

View the contents of the file with the type command.

type('myfile.txt')
 16 5 9 4 2 11 7 14 3 10 6 15 13 8 12 1

Display Hyperlinks in Command Window

Display a hyperlink (The MathWorks Web Site) onthe screen.

url = 'https://www.mathworks.com';sitename = 'The MathWorks Web Site';fprintf('<a href = "%s">%s</a>\n',url,sitename)

%s in the formatSpec inputindicates that the values of the variables url and sitename,should be printed as text.

Input Arguments

collapse all

fileIDFile identifier
1 (default) | 2 | scalar

Fileidentifier, specified as one of the following:

  • A file identifier obtained from fopen.

  • 1 for standard output (the screen).

  • 2 for standard error.

Data Types: double

A1,...,AnNumeric or character arrays
scalar | vector | matrix | multidimensional array

Numeric or character arrays, specified as a scalar, vector,matrix, or multidimensional array.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64 | logical | char

Output Arguments

collapse all

nbytes — Number of bytes
scalar

Number of bytes that fprintf writes, returnedas a scalar. When writing to a file, nbytes isdetermined by the character encoding. When printing data to the screen, nbytes isthe number of characters displayed on the screen.

Tips

  • Format specifiers for the reading functions sscanf and fscanf differfrom the formats for the writing functions sprintf and fprintf.The reading functions do not support a precision field. The widthfield specifies a minimum for writing, but a maximum for reading.

  • If you specify an invalid formatting operator or special character, then fprintf prints all text up to the invalid operator or character and discards the rest.

    Example: If formatSpec is 'value = %z', then fprintf prints 'value =' because %z is not a formatting operator.

    Example: If formatSpec is 'character \x99999 = %s', then fprintf prints 'character' because \x99999 is not a valid special character.

References

[1] Kernighan, B. W., and D. M. Ritchie, TheC Programming Language, Second Edition, Prentice-Hall,Inc., 1988.

[2] ANSI specification X3.159-1989: “ProgrammingLanguage C,” ANSI, 1430 Broadway, New York, NY 10018.

Extended Capabilities

Version History

Introduced before R2006a

See Also

disp | fclose | ferror | fopen | fread | fscanf | fwrite | fseek | ftell | sprintf

Topics

  • Export Cell Array to Text File
  • Append to or Overwrite Existing Text Files
  • Formatting Text

MATLAB Command

You clicked a link that corresponds to this MATLAB command:

 

Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.

Write data to text file (1)

Select a Web Site

Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .

You can also select a web site from the following list:

Americas

  • América Latina (Español)
  • Canada (English)
  • United States (English)

Europe

  • Belgium (English)
  • Denmark (English)
  • Deutschland (Deutsch)
  • España (Español)
  • Finland (English)
  • France (Français)
  • Ireland (English)
  • Italia (Italiano)
  • Luxembourg (English)
  • Netherlands (English)
  • Norway (English)
  • Österreich (Deutsch)
  • Portugal (English)
  • Sweden (English)
  • Switzerland
    • Deutsch
    • English
    • Français
  • United Kingdom (English)

Asia Pacific

  • Australia (English)
  • India (English)
  • New Zealand (English)
  • 中国
  • 日本 (日本語)
  • 한국 (한국어)

Contact your local office

Write data to text file (2024)

References

Top Articles
Ariana Grande Cloud - 100 ml - eau de parfum spray - damesparfum | bol
Body Mist Ariana Grande Cloud 236 ml | bol
Supermotocross Points Standings
9Anime Keeps Buffering
Tony's Delicatessen & Fresh Meats
ACTS Occupational and Physical Therapy
Best Jewelry Laser Engraving Machine to Elevate Your Design
Jobs Hiring Start Tomorrow
Mychart.texaschildrens.org.mychart/Billing/Guest Pay
Step 2 Score Release Thread
How To Find Someone's IP On Discord | Robots.net
Schluter & Balik Funeral Home Obituaries
Navicent Human Resources Phone Number
Craigslist Richmond Va
Mychart.solutionhealth.org/Mychartprd/Billing/Summary
Chase Bank Time Hours
Dallascowgirl Leaked Of
Myth or Fact: Massage Parlors and How They Play a Role in Trafficking | OUR Rescue
Saltburn | Rotten Tomatoes
Craigslist Apartments In Philly
Unblocked WTF, UBG9 Unblocked Games, UBGWTF Games, Unblocked WTF, WTF Games Unblocked
Catholic Church Near Seatac Airport
Staples Ups Drop Off
Suman Gharti on LinkedIn: Yashoda [2022] Hindi Dubbed Full Movie In 4K UHD | Samantha, Unni…
Kplctv Weather Forecast
EVOLVE: Predicting User Evolution and Network Dynamics in Social Media Using Fine-Tuned GPT-like Model
Meine Erfahrung mit Textbroker als Autor (inkl. Beispiel zu Verdienst)
Dumb Money, la recensione: Paul Dano e quel film biografico sul caso GameStop
What Does Exp Wed Mean On Hulu
Sharkbrew
What Does Spd2 Mean On Whirlpool Microwave
NWS Southern Region Tropical Webpage
Foley Housing Authority Photos
인민 을 위해 복무하라 다시보기
Best Hs Bball Players
20 Fantastic Things To Do In Nacogdoches, The Oldest Town In Texas
Persona 5 R Fusion Calculator
Mikayla Campinos: The Rising Star Of EromeCom
Pick N Pull Near Me [Locator Map + Guide + FAQ]
Roses Gordon Highway
Rise Meadville Reviews
Ourfig
Acbl Homeport
Krua Thai In Ravenna
GW2 Fractured update patch notes 26th Nov 2013
Nsfw Otp Prompt Generator Dyslexic Friendly
Pawn Shops In Sylva Nc
Benson Downs Resident Portal
Slushy Leaks
Rocky Aur Rani Kii Prem Kahaani - Movie Reviews
Vrlbi Rentals
Pioneer Library Overdrive
Latest Posts
Article information

Author: Nathanial Hackett

Last Updated:

Views: 6543

Rating: 4.1 / 5 (72 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Nathanial Hackett

Birthday: 1997-10-09

Address: Apt. 935 264 Abshire Canyon, South Nerissachester, NM 01800

Phone: +9752624861224

Job: Forward Technology Assistant

Hobby: Listening to music, Shopping, Vacation, Baton twirling, Flower arranging, Blacksmithing, Do it yourself

Introduction: My name is Nathanial Hackett, I am a lovely, curious, smiling, lively, thoughtful, courageous, lively person who loves writing and wants to share my knowledge and understanding with you.