TiStripChart.ChannelMean

TiStripChart See Also

Used to get the mean of all channel data for a specific channel.

property ChannelMean[Index : Integer] : Double;

Description

Use ChannelMean to get the mean of all channel data for a specific channel. If no index times have been added, the result will equal 0. If index times have been added but no data has been specified for the channel, the result will equal 0. This value is calculated when the method is called.

Example

Delphi

Value := iComponent.ChannelMean[0]; //Gets the mean value of all data for the 1st channel

C++ Builder

Value = iComponent->ChannelMean[0]; //Gets the mean value of all data for the 1st channel

Note: This is a runtime only property.

Contents | Index | Previous | Next