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

Concept explainers

bartleby

Videos

Question
Book Icon
Chapter 6, Problem 6.1P
To determine

To write:

A function perimarea that calculates and returns the perimeter, area of rectangle and pass the length and width of the rectangle as input arguments.

Expert Solution & Answer
Check Mark

Answer to Problem 6.1P

Solution:

The function file is,

% MATLAB code to calculates and returns the perimeter and area of a rectangle.

%Function file.

function [perimeter, Area] = perimarea(len, Wid)

%put the input arguments as length and width and get the perimeter and area

%by using the function perimarea.

perimeter = 2*(len+Wid);

%define the variable perimeter.

Area = len*Wid;

%define the variable area.

end

% end of function

%The script file should be placed in the same folder.

Explanation of Solution

The formula for the area of the rectangle is given as,

Area=l×b

Here, the length of the rectangle is l and width is b.

Substitute 10 for l and 5 for b in the above formula.

Area=10×5=50

The formula for the perimeter of the rectangle is given as,

perimeter=2(l+b)

Substitute 10 for l and 5 for b in the above formula.

perimeter=2(10+5)=30

MATLAB Code:

clc

clear all

close all

% MATLAB code to calculates and returns the perimeter and area of a rectangle.

%Function file.

function [perimeter, Area] = perimarea(len, Wid)

%put the input arguments as length and width and get the perimeter and area

%by using the function perimarea.

perimeter = 2*(len+Wid);

%define the variable perimeter.

Area = len*Wid;

%define the variable area.

end

% end of function

%The script file should be placed in the same folder.

Save the MATLAB script with name, perimarea.m in the current folder. Execute the function by typing the function name at the command window to generate output.

Result:

The result is,

MATLAB: A Practical Introduction to Programming and Problem Solving, Chapter 6, Problem 6.1P

Therefore, the result is stated above.

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!
Students have asked these similar questions
Write the given trig function as an algebraic expression
Show calculations for table and show all work.
find the value of the trig function indicated
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
Finding Local Maxima and Minima by Differentiation; Author: Professor Dave Explains;https://www.youtube.com/watch?v=pvLj1s7SOtk;License: Standard YouTube License, CC-BY