< Back

Get-TrapezoidArea

Mon Jan 13, 2020 7:38 pm

NAME Get-TrapezoidArea



SYNOPSIS

Gets the area of a Trapezoid





SYNTAX

Get-TrapezoidArea -Base1 <Double> -Base2 <Double> -Height <Double> [<CommonParameters>]





DESCRIPTION

Gets the area of a Trapezoid, using the simple equation



Area = h/2 * (b1 + b2)





PARAMETERS

-Base1 <Double>

The First Trapezoid Base



Required? true

Position? named

Default value 0

Accept pipeline input? false

Accept wildcard characters? false



-Base2 <Double>

The Second Trapezoid Base



Required? true

Position? named

Default value 0

Accept pipeline input? false

Accept wildcard characters? false



-Height <Double>

The Trapezoid Height



Required? true

Position? named

Default value 0

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS





RELATED LINKS