areasphere {Thermimage}R Documentation

Provides the surface area of a sphere.

Description

Provides the surface area of a sphere.

Usage

areasphere(radius)

Arguments

radius

The radius of the sphere.

Author(s)

Glenn J Tattersall

Examples

## The function is currently defined as
function (radius) 
{
    Area <- 4 * pi * radius^2
    Area
  }

# Example calculation:
radius<-4
areasphere(radius)


[Package Thermimage version 4.1.3 Index]