15.12.2012 Views

scipy tutorial - Baustatik-Info-Server

scipy tutorial - Baustatik-Info-Server

scipy tutorial - Baustatik-Info-Server

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

SciPy Reference Guide, Release 0.8.dev<br />

Returns<br />

tmin: float :<br />

tmax(a, upperlimit, axis=0, inclusive=True)<br />

Compute the trimmed maximum<br />

This function computes the maximum value of an array along a given axis, while ignoring values larger than a<br />

specified upper limit.<br />

Parameters<br />

a : array_like<br />

array of values<br />

upperlimit : None or float, optional<br />

Values in the input array greater than the given limit will be ignored. When upperlimit<br />

is None, then all values are used. The default value is None.<br />

axis : None or int, optional<br />

Operate along this axis. None means to use the flattened array and the default is zero.<br />

inclusive : {True, False}, optional<br />

Returns<br />

tmax : float<br />

This flag determines whether values exactly equal to the upper limit are included.<br />

The default value is True.<br />

tstd(a, limits=None, inclusive=(1, 1))<br />

Compute the trimmed sample standard deviation<br />

This function finds the sample standard deviation of given values, ignoring values outside the given limits.<br />

Parameters<br />

a : array_like<br />

array of values<br />

limits : None or (lower limit, upper limit), optional<br />

Values in the input array less than the lower limit or greater than the upper limit will<br />

be ignored. When limits is None, then all values are used. Either of the limit values<br />

in the tuple can also be None representing a half-open interval. The default value is<br />

None.<br />

inclusive : (bool, bool), optional<br />

Returns<br />

tstd : float<br />

A tuple consisting of the (lower flag, upper flag). These flags determine whether<br />

values exactly equal to the lower or upper limits are included. The default value is<br />

(True, True).<br />

tsem(a, limits=None, inclusive=(True, True))<br />

Compute the trimmed standard error of the mean<br />

This function finds the standard error of the mean for given values, ignoring values outside the given limits.<br />

Parameters<br />

a : array_like<br />

array of values<br />

642 Chapter 3. Reference

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!