MATLAB: A Practical Introduction to Programming and Problem Solving
MATLAB: A Practical Introduction to Programming and Problem Solving
5th Edition
ISBN: 9780128154793
Author: Stormy Attaway Ph.D. Boston University
Publisher: Elsevier Science
bartleby

Videos

Question
Book Icon
Chapter 9, Problem 9.1P
To determine

To modify:

The script “fileex” to sum the numbers from the file and create a file in this format first.

Expert Solution & Answer
Check Mark

Answer to Problem 9.1P

Solution:

The script is saved and executed as follows.

Explanation of Solution

MATLAB Code:

fid = fopen('subjexp.dat');

%Define the instruction to read information from "subjexp.dat" and open them.

if fid == -1

disp('Unsuccessful; The file is not opened')

%Define the instruction to display the unsuccessful result.

else

SUM = 0;

while ~feof(fid)

Number = strtok(fgetl(fid));

SUM = SUM + str2double(Number);

%Define the instruction to separate each line into the number code and %converts to a number before printing.

end

closeresult = fclose(fid);

%Define the instruction to check the file close for success.

if closeresult == 0

disp('successful: File is closed')

else

disp('Unsuccessful: File does not close')

%Define the if-else statement to check the condition for closing the

%file, and display the relative statement.

end

end

fprintf('The total sum of the numbers is: %.2f\n', SUM)

%Define the instruction to create the total sum of the numbers.

Save the MATLAB script with name, chapter_9_54793_9_1P.m in the current folder. Execute the script by typing the string name at the command window to modify the script “fileex” to sum the numbers from the file and create a file in this format first.

Result:

MATLAB: A Practical Introduction to Programming and Problem Solving, Chapter 9, Problem 9.1P

Therefore, the script is saved and executed.

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Knowledge Booster
Background pattern image
Statistics
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, statistics and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Text book image
MATLAB: An Introduction with Applications
Statistics
ISBN:9781119256830
Author:Amos Gilat
Publisher:John Wiley & Sons Inc
Text book image
Probability and Statistics for Engineering and th...
Statistics
ISBN:9781305251809
Author:Jay L. Devore
Publisher:Cengage Learning
Text book image
Statistics for The Behavioral Sciences (MindTap C...
Statistics
ISBN:9781305504912
Author:Frederick J Gravetter, Larry B. Wallnau
Publisher:Cengage Learning
Text book image
Elementary Statistics: Picturing the World (7th E...
Statistics
ISBN:9780134683416
Author:Ron Larson, Betsy Farber
Publisher:PEARSON
Text book image
The Basic Practice of Statistics
Statistics
ISBN:9781319042578
Author:David S. Moore, William I. Notz, Michael A. Fligner
Publisher:W. H. Freeman
Text book image
Introduction to the Practice of Statistics
Statistics
ISBN:9781319013387
Author:David S. Moore, George P. McCabe, Bruce A. Craig
Publisher:W. H. Freeman
Whiteboard Math: The Basics of Factoring; Author: Whiteboard Math;https://www.youtube.com/watch?v=-VKAYqzRp4o;License: Standard YouTube License, CC-BY
Factorisation using Algebraic Identities | Algebra | Mathacademy; Author: Mathacademy;https://www.youtube.com/watch?v=BEp1PaU-qEw;License: Standard YouTube License, CC-BY
How To Factor Polynomials The Easy Way!; Author: The Organic Chemistry Tutor;https://www.youtube.com/watch?v=U6FndtdgpcA;License: Standard Youtube License