|
| static Profile | oevislib_net.Profile.operator* (Profile inProfile1, Profile inProfile2) |
| | Multiplies two profiles.
|
| static Profile | oevislib_net.Profile.operator+ (Profile inProfile1, Profile inProfile2) |
| | Sums two profiles.
|
| static Profile | oevislib_net.Profile.operator- (Profile inProfile1, Profile inProfile2) |
| | Subtracts the second profile from the first one.
|
| static Profile | oevislib_net.Profile.operator/ (Profile inProfile1, Profile inProfile2) |
| | Divides one profile by another one.
|
| static Profile | oevislib_net.Profile.SumProfiles (Profile inProfile1, Profile inProfile2) |
| | Sum every value of the first profile with the corresponding value of the second profile.
|
| static Profile | oevislib_net.Profile.SumProfiles (Array< Profile > inProfiles) |
| | Sum all profiles' values from an array.
|
| static Profile | oevislib_net.Profile.AbsDifferenceProfile (Profile inProfile1, Profile inProfile2) |
| | Computes the absolute difference between the first profile's values and the second profile's values.
|
| static Profile | oevislib_net.Profile.DivideProfiles (Profile inProfile1, Profile inProfile2) |
| | Divides two profiles value by value.
|
| static Profile | oevislib_net.Profile.JoinProfiles (Profile inProfile1, Profile inProfile2) |
| | Joins two profiles together, adding the second profile at the end of the first one.
|
| static Profile | oevislib_net.Profile.MaxProfile (Profile inProfile1, Profile inProfile2) |
| | Computes the maximum between the two corresponding values in the two profiles, point by point.
|
| static Profile | oevislib_net.Profile.MaxProfile (Array< Profile > inProfiles) |
| | Computes the maximum profile, extracting the maximum value for every point in the array of profiles.
|
| static Profile | oevislib_net.Profile.MinProfile (Profile inProfile1, Profile inProfile2) |
| | Computes the minimum between the two corresponding values in the two profiles, point by point.
|
| static Profile | oevislib_net.Profile.MinProfile (Array< Profile > inProfiles) |
| | Computes the minimum profile, extracting the maximum value for every point in the array of profiles.
|
| static Profile | oevislib_net.Profile.MultiplyProfiles (Profile inProfile1, Profile inProfile2) |
| | Multiplies the first profile's values with the corresponding values in the second profile.
|
| static Profile | oevislib_net.Profile.MultiplyProfiles (Array< Profile > inProfiles) |
| | Multiplies all profiles' values from an array.
|
| static Profile | oevislib_net.Profile.SubtractProfiles (Profile inProfile1, Profile inProfile2) |
| | Subtracts the second profile's values from the first profile's corresponding values.
|