RealArrayValue#
- class ansys.tools.variableinterop.array_values.RealArrayValue#
Bases:
ansys.tools.variableinterop.variable_value.CommonArrayValue[numpy.float64]Stores a value as a
RealArrayValuevariable type.In Python, the
RealArrayValuetype is implemented by extending NumPy’sndarraytype. This means that they decay naturally intonumpy.ndarrayobjects when using NumPy’s array operators. It also means that they inherit many of the NumPy behaviors, which may be slightly different from the behaviors specified in the variable interop standards. For example, when converting from real to integer, the value is floored instead of rounded. If you want the variable interop standard conversions, call theto_integer_array_valuemethod on theRealArrayValuetype and use the resultingIntegerArrayValuetype as you would a NumPyndarrayof int64 values.
Overview#
Convert this value to a |
|
Convert this value to an |
|
Convert the value to a |
|
Convert an API-formatted string to the |
Import detail#
from ansys.tools.variableinterop.array_values import RealArrayValue
Property detail#
- property RealArrayValue.variable_type: ansys.tools.variableinterop.variable_type.VariableType#
Method detail#
- RealArrayValue.__eq__(other: RealArrayValue) bool#
- RealArrayValue.clone() RealArrayValue#
- RealArrayValue.accept(visitor: ansys.tools.variableinterop.ivariable_visitor.IVariableValueVisitor[T]) T#
- RealArrayValue.to_boolean_array_value() BooleanArrayValue#
Convert this value to a
BooleanArrayValuetype.- Returns:
BooleanArrayValueBooleanArrayValuetype with the same values converted to Boolean values.
- RealArrayValue.to_integer_array_value() IntegerArrayValue#
Convert this value to an
IntegerArrayValuetype.- Returns:
IntegerArrayValueIntegerArrayValuetype with the same values converted to integers.
- RealArrayValue.to_string_array_value() StringArrayValue#
Convert the value to a
StringArrayValuetype.- Returns:
StringArrayValueStringArrayValuetype with the same value converted to strings.
- RealArrayValue.to_api_string(context: ansys.tools.variableinterop.isave_context.ISaveContext | None = None) str#
- static RealArrayValue.from_api_string(value: str) RealArrayValue#
Convert an API-formatted string to the
RealArrayValuetype.- Parameters:
- value
str API string to parse.
- value
- Returns:
RealArrayValueResult of parsing the
RealArrayValuetype.