62.9k views
1 vote
Write a function perim that receives the radius r of a circle and calculates and returns the perimeter p of the circle (p = 2 * π * r). a) def perim(r): b) perim(r): c) def perim_circle(r): d) def calculate_perimeter(r):

User Gonmator
by
7.8k points

1 Answer

5 votes

Answer:

Write a function perim that receives the radius r of a circle, and calculates and returns the perimeter P of the circle (P = 2 π r). Here are examples of using the function:

>>perimeter = perim(5.3)

perimeter =33.3009

>>fprintf(‘The perimeter is %.1f\\’, perim(4))

The perimeter is 25.1

>>help perim

Calculates the perimeter of a circle

Renewable energy sources, such as biomass, are gaining increasing attention. Biomass energy units include megawatt hours (MWh) and gigajoules (GJ). One MWh is equivalent to 3.6 GJ. For example, 1 cubic meter of wood chips produces 1 MWh.

Step-by-step solution

Step 1 of 3

The perimeter of a circle is,

Here,

r is the radius of the circle and

P is the perimeter of the circle.

Chapter 3, Problem 25E is solved.

View this answer

View a sample solution

Back to top

Corresponding textbook

MATLAB | 3rd Edition

MATLAB | 3rd Edition

9780124058767

ISBN:

0124058760

Authors:

Stormy Attaway

Rent | Buy

MATLAB

(3rd Edition)

Solutions for Chapter 3

Problem 25E: Write a function perim that receives

the radius r of a circle, and calculates and returns

the perimeter P of the circle (P = 2 π r). Here are …

Solutions for problems in chapter 3

Get solutions

User Ramiro Herrera
by
8.3k points