MATLAB: A Practical Introduction to Programming and Problem Solving
MATLAB: A Practical Introduction to Programming and Problem Solving
5th Edition
ISBN: 9780128163450
Author: ATTAWAY
Publisher: ELSEVIER
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
Calculate the 90% confidence interval for the population mean difference using the data in the attached image. I need to see where I went wrong.
Microsoft Excel snapshot for random sampling: Also note the formula used for the last column 02 x✓ fx =INDEX(5852:58551, RANK(C2, $C$2:$C$51)) A B 1 No. States 2 1 ALABAMA Rand No. 0.925957526 3 2 ALASKA 0.372999976 4 3 ARIZONA 0.941323044 5 4 ARKANSAS 0.071266381 Random Sample CALIFORNIA NORTH CAROLINA ARKANSAS WASHINGTON G7 Microsoft Excel snapshot for systematic sampling: xfx INDEX(SD52:50551, F7) A B E F G 1 No. States Rand No. Random Sample population 50 2 1 ALABAMA 0.5296685 NEW HAMPSHIRE sample 10 3 2 ALASKA 0.4493186 OKLAHOMA k 5 4 3 ARIZONA 0.707914 KANSAS 5 4 ARKANSAS 0.4831379 NORTH DAKOTA 6 5 CALIFORNIA 0.7277162 INDIANA Random Sample Sample Name 7 6 COLORADO 0.5865002 MISSISSIPPI 8 7:ONNECTICU 0.7640596 ILLINOIS 9 8 DELAWARE 0.5783029 MISSOURI 525 10 15 INDIANA MARYLAND COLORADO
Suppose the Internal Revenue Service reported that the mean tax refund for the year 2022 was $3401. Assume the standard deviation is $82.5 and that the amounts refunded follow a normal probability distribution. Solve the following three parts? (For the answer to question 14, 15, and 16, start with making a bell curve. Identify on the bell curve where is mean, X, and area(s) to be determined. 1.What percent of the refunds are more than $3,500? 2. What percent of the refunds are more than $3500 but less than $3579? 3. What percent of the refunds are more than $3325 but less than $3579?
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.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Big Ideas Math A Bridge To Success Algebra 1: Stu...
Algebra
ISBN:9781680331141
Author:HOUGHTON MIFFLIN HARCOURT
Publisher:Houghton Mifflin Harcourt
Text book image
Glencoe Algebra 1, Student Edition, 9780079039897...
Algebra
ISBN:9780079039897
Author:Carter
Publisher:McGraw Hill
Finding Local Maxima and Minima by Differentiation; Author: Professor Dave Explains;https://www.youtube.com/watch?v=pvLj1s7SOtk;License: Standard YouTube License, CC-BY