Labview64¤
Communicates with the labview_lib library via the Labview32 class that is running on a server.
Attention
This example requires that a 32-bit LabVIEW Run-Time Engine ≥ 2017 is installed and that the operating system is Windows.
Labview64 ¤
Labview64()
Bases: Client64
Communicates with a 32-bit LabVIEW library, labview_lib.
This class demonstrates how to communicate with a 32-bit LabVIEW library if an instance of this class is created within a 64-bit Python interpreter.
Source code in src/msl/examples/loadlib/labview64.py
23 24 25 26 27 28 29 30 31 |
|
stdev ¤
stdev(x, weighting=0)
Calculates the mean, variance and standard deviation of the values in the input x
.
See the corresponding Labview32.stdev method.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
Sequence[float]
|
The data to calculate the mean, variance and standard deviation of. |
required |
weighting
|
int
|
Whether to calculate the sample ( |
0
|
Returns:
Type | Description |
---|---|
tuple[float, float, float]
|
The mean, variance and standard deviation. |
Source code in src/msl/examples/loadlib/labview64.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
|