1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
|
# Copyright (c) DataLab Platform Developers, BSD 3-Clause license, see LICENSE file.
"""
Arithmetic operations on signals
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
"""
from __future__ import annotations
import warnings
from typing import TYPE_CHECKING
import numpy as np
from sigima.enums import MathOperator, SignalsToImageOrientation
from sigima.objects import SignalObj, create_image
from sigima.proc.base import (
ArithmeticParam,
ConstantParam,
SignalsToImageParam,
dst_1_to_1,
dst_2_to_1,
dst_n_to_1,
)
from sigima.proc.decorator import computation_function
from sigima.proc.signal.base import (
is_uncertainty_data_available,
restore_data_outside_roi,
)
from sigima.proc.signal.mathops import inverse
from sigima.tools.signal import scaling
if TYPE_CHECKING:
from sigima.objects import ImageObj
def __signals_y_to_array(signals: list[SignalObj]) -> np.ndarray:
"""Create an array from a list of signals, extracting the `y` attribute.
Args:
signals: List of signal objects.
Returns:
A NumPy array stacking the `y` attribute from all signals.
"""
return np.array([sig.y for sig in signals], dtype=signals[0].y.dtype)
def __signals_dy_to_array(signals: list[SignalObj]) -> np.ndarray:
"""Create an array from a list of signals, extracting the `dy` attribute.
Args:
signals: List of signal objects.
Returns:
A NumPy array stacking the `dy` attribute from all signals.
"""
return np.array([sig.dy for sig in signals], dtype=signals[0].dy.dtype)
@computation_function()
def addition(src_list: list[SignalObj]) -> SignalObj:
"""Compute the element-wise sum of multiple signals.
The first signal in the list defines the "base" signal. All other signals are added
element-wise to the base signal.
.. note::
If all signals share the same region of interest (ROI), the sum is performed
only within the ROI.
.. note::
Uncertainties are propagated.
.. warning::
It is assumed that all signals have the same size and x-coordinates.
Args:
src_list: List of source signals.
Returns:
Signal object representing the sum of the source signals.
"""
dst = dst_n_to_1(src_list, "Σ") # `dst` data is initialized to `src_list[0]` data.
dst.y = np.sum(__signals_y_to_array(src_list), axis=0)
if is_uncertainty_data_available(src_list):
dst.dy = np.sqrt(np.sum(__signals_dy_to_array(src_list) ** 2, axis=0))
restore_data_outside_roi(dst, src_list[0])
return dst
@computation_function()
def average(src_list: list[SignalObj]) -> SignalObj:
"""Compute the element-wise average of multiple signals.
The first signal in the list defines the "base" signal. All other signals are
averaged element-wise with the base signal.
.. note::
If all signals share the same region of interest (ROI), the average is performed
only within the ROI.
.. note::
Uncertainties are propagated.
.. warning::
It is assumed that all signals have the same size and x-coordinates.
Args:
src_list: List of source signals.
Returns:
Signal object representing the average of the source signals.
"""
dst = dst_n_to_1(src_list, "µ") # `dst` data is initialized to `src_list[0]` data.
dst.y = np.mean(__signals_y_to_array(src_list), axis=0)
if is_uncertainty_data_available(src_list):
dy_array = __signals_dy_to_array(src_list)
dst.dy = np.sqrt(np.sum(dy_array**2, axis=0)) / len(src_list)
restore_data_outside_roi(dst, src_list[0])
return dst
@computation_function()
def standard_deviation(src_list: list[SignalObj]) -> SignalObj:
"""Compute the element-wise standard deviation of multiple signals.
The first signal in the list defines the "base" signal. All other signals are
used to compute the element-wise standard deviation with the base signal.
.. note::
If all signals share the same region of interest (ROI), the standard deviation
is computed only within the ROI.
.. warning::
It is assumed that all signals have the same size and x-coordinates.
Args:
src_list: List of source signals.
Returns:
Signal object representing the standard deviation of the source signals.
"""
dst = dst_n_to_1(src_list, "𝜎") # `dst` data is initialized to `src_list[0]` data
dst.y = np.std(__signals_y_to_array(src_list), axis=0, ddof=0)
if is_uncertainty_data_available(src_list):
dst.dy = dst.y / np.sqrt(2 * (len(src_list) - 1))
restore_data_outside_roi(dst, src_list[0])
return dst
@computation_function()
def product(src_list: list[SignalObj]) -> SignalObj:
"""Compute the element-wise product of multiple signals.
The first signal in the list defines the "base" signal. All other signals are
multiplied element-wise with the base signal.
.. note::
If all signals share the same region of interest (ROI), the product is performed
only within the ROI.
.. note::
Uncertainties are propagated.
.. warning::
It is assumed that all signals have the same size and x-coordinates.
Args:
src_list: List of source signals.
Returns:
Signal object representing the product of the source signals.
"""
dst = dst_n_to_1(src_list, "Π") # `dst` data is initialized to `src_list[0]` data.
y_array = __signals_y_to_array(src_list)
dst.y = np.prod(y_array, axis=0)
if is_uncertainty_data_available(src_list):
dy_array = __signals_dy_to_array(src_list)
with warnings.catch_warnings():
warnings.simplefilter("ignore", category=RuntimeWarning)
uncertainty = np.abs(dst.y) * np.sqrt(
np.sum((dy_array / y_array) ** 2, axis=0)
)
uncertainty[np.isinf(uncertainty)] = np.nan
dst.dy = uncertainty
restore_data_outside_roi(dst, src_list[0])
return dst
@computation_function()
def addition_constant(src: SignalObj, p: ConstantParam) -> SignalObj:
"""Compute the sum of a signal and a constant value.
The function adds a constant value to each element of the input signal.
.. note::
If the signal has a region of interest (ROI), the addition is performed
only within the ROI.
.. note::
Uncertainties are propagated.
Args:
src: Input signal object.
p: Constant value.
Returns:
Result signal object representing the sum of the input signal and the constant.
"""
# Uncertainty propagation: dst_1_to_1() copies all data including uncertainties.
# For addition with constant: σ(y + c) = σ(y), so no modification needed.
dst = dst_1_to_1(src, "+", str(p.value))
dst.y += p.value
restore_data_outside_roi(dst, src)
return dst
@computation_function()
def difference_constant(src: SignalObj, p: ConstantParam) -> SignalObj:
"""Compute the difference between a signal and a constant value.
The function subtracts a constant value from each element of the input signal.
.. note::
If the signal has a region of interest (ROI), the subtraction is performed
only within the ROI.
.. note::
Uncertainties are propagated.
Args:
src: Input signal object.
p: Constant value.
Returns:
Result signal object representing the difference between the input signal and
the constant.
"""
# Uncertainty propagation: dst_1_to_1() copies all data including uncertainties.
# For subtraction with constant: σ(y - c) = σ(y), so no modification needed.
dst = dst_1_to_1(src, "-", str(p.value))
dst.y -= p.value
restore_data_outside_roi(dst, src)
return dst
@computation_function()
def product_constant(src: SignalObj, p: ConstantParam) -> SignalObj:
"""Compute the product of a signal and a constant value.
The function multiplies each element of the input signal by a constant value.
.. note::
If the signal has a region of interest (ROI), the multiplication is performed
only within the ROI.
.. note::
Uncertainties are propagated.
Args:
src: Input signal object.
p: Constant value.
Returns:
Result signal object representing the product of the input signal and the
constant.
"""
assert p.value is not None
# Uncertainty propagation: dst_1_to_1() copies all data including uncertainties.
# For multiplication with constant: σ(c*y) = |c| * σ(y), so modification needed.
dst = dst_1_to_1(src, "×", str(p.value))
dst.y *= p.value
if is_uncertainty_data_available(src):
dst.dy *= np.abs(p.value) # Modify in-place since dy already copied from src
restore_data_outside_roi(dst, src)
return dst
@computation_function()
def division_constant(src: SignalObj, p: ConstantParam) -> SignalObj:
"""Compute the division of a signal by a constant value.
The function divides each element of the input signal by a constant value.
.. note::
If the signal has a region of interest (ROI), the division is performed
only within the ROI.
.. note::
Uncertainties are propagated.
Args:
src: Input signal object.
p: Constant value.
Returns:
Result signal object representing the division of the input signal by the
constant.
"""
assert p.value is not None
# Uncertainty propagation: dst_1_to_1() copies all data including uncertainties.
# For division with constant: σ(y/c) = σ(y) / |c|, so modification needed.
dst = dst_1_to_1(src, "/", str(p.value))
with warnings.catch_warnings():
warnings.simplefilter("ignore", category=RuntimeWarning)
dst.y /= p.value
dst.y[np.isinf(dst.y)] = np.nan
if is_uncertainty_data_available(src):
dst.dy /= np.abs(p.value) # Modify in-place since dy already copied
dst.dy[np.isinf(dst.dy)] = np.nan
restore_data_outside_roi(dst, src)
return dst
@computation_function()
def arithmetic(src1: SignalObj, src2: SignalObj, p: ArithmeticParam) -> SignalObj:
"""Perform an arithmetic operation on two signals.
The function applies the specified arithmetic operation to each element of the input
signals.
.. note::
The operation is performed only within the region of interest of `src1`.
.. note::
Uncertainties are propagated.
.. warning::
It is assumed that both signals have the same size and x-coordinates.
Args:
src1: First input signal.
src2: Second input signal.
p: Arithmetic operation parameters.
Returns:
Result signal object representing the arithmetic operation on the input signals.
"""
initial_dtype = src1.xydata.dtype
title = p.operation.replace("obj1", "{0}").replace("obj2", "{1}")
dst = src1.copy(title=title)
a = ConstantParam.create(value=p.factor)
b = ConstantParam.create(value=p.constant)
if p.operator == MathOperator.ADD:
dst = addition_constant(product_constant(addition([src1, src2]), a), b)
elif p.operator == MathOperator.SUBTRACT:
dst = addition_constant(product_constant(difference(src1, src2), a), b)
elif p.operator == MathOperator.MULTIPLY:
dst = addition_constant(product_constant(product([src1, src2]), a), b)
elif p.operator == MathOperator.DIVIDE:
dst = addition_constant(product_constant(product([src1, inverse(src2)]), a), b)
# Eventually convert to initial data type
if p.restore_dtype:
dst.xydata = dst.xydata.astype(initial_dtype)
restore_data_outside_roi(dst, src1)
return dst
@computation_function()
def difference(src1: SignalObj, src2: SignalObj) -> SignalObj:
"""Compute the element-wise difference between two signals.
The function subtracts each element of the second signal from the corresponding
element of the first signal.
.. note::
If both signals share the same region of interest (ROI), the difference is
performed only within the ROI.
.. note::
Uncertainties are propagated.
.. warning::
It is assumed that both signals have the same size and x-coordinates.
Args:
src1: First input signal.
src2: Second input signal.
Returns:
Result signal object representing the difference between the input signals.
"""
dst = dst_2_to_1(src1, src2, "-")
dst.y = src1.y - src2.y
if is_uncertainty_data_available([src1, src2]):
dy_array = __signals_dy_to_array([src1, src2])
dst.dy = np.sqrt(np.sum(dy_array**2, axis=0))
restore_data_outside_roi(dst, src1)
return dst
@computation_function()
def quadratic_difference(src1: SignalObj, src2: SignalObj) -> SignalObj:
"""Compute the normalized difference between two signals.
The function computes the element-wise difference between the two signals and
divides the result by sqrt(2.0).
.. note::
If both signals share the same region of interest (ROI), the operation is
performed only within the ROI.
.. note::
Uncertainties are propagated. For two input signals with identical standard
deviations, the standard deviation of the output signal equals the standard
deviation of each of the input signals.
.. warning::
It is assumed that both signals have the same size and x-coordinates.
Args:
src1: First input signal.
src2: Second input signal.
Returns:
Result signal object representing the quadratic difference between the input
signals.
"""
norm = ConstantParam.create(value=1.0 / np.sqrt(2.0))
return product_constant(difference(src1, src2), norm)
@computation_function()
def division(src1: SignalObj, src2: SignalObj) -> SignalObj:
"""Compute the element-wise division between two signals.
The function divides each element of the first signal by the corresponding element
of the second signal.
.. note::
If both signals share the same region of interest (ROI), the division is
performed only within the ROI.
.. note::
Uncertainties are propagated.
.. warning::
It is assumed that both signals have the same size and x-coordinates.
Args:
src1: First input signal.
src2: Second input signal.
Returns:
Result signal object representing the division of the input signals.
"""
dst = product([src1, inverse(src2)])
return dst
@computation_function()
def signals_to_image(src_list: list[SignalObj], p: SignalsToImageParam) -> ImageObj:
"""Combine multiple signals into an image.
The function takes a list of signals and combines them into a 2D image,
arranging them either as rows or columns based on the specified orientation.
Optionally, each signal can be normalized before combining.
.. note::
All signals must have the same size (number of data points).
.. note::
If normalization is enabled, each signal is normalized independently
using the specified normalization method before being added to the image.
Args:
src_list: List of source signals to combine.
p: Parameters specifying orientation and normalization options.
Returns:
Image object representing the combined signals.
Raises:
ValueError: If the signal list is empty or signals have different sizes.
"""
if not src_list:
raise ValueError("The signal list is empty.")
# Check that all signals have the same size
sizes = [len(sig.y) for sig in src_list]
if len(set(sizes)) > 1:
raise ValueError(
f"All signals must have the same size. Found sizes: {set(sizes)}"
)
# Prepare data array
y_array = __signals_y_to_array(src_list)
# Normalize if requested
if p.normalize:
for i in range(len(src_list)):
y_array[i] = scaling.normalize(y_array[i], p.normalize_method)
# Arrange as rows or columns
if p.orientation == SignalsToImageOrientation.COLUMNS:
data = y_array.T
else: # ROWS
data = y_array
# Create the result image
suffix_parts = [f"n={len(src_list)}", f"orientation={p.orientation}"]
if p.normalize:
suffix_parts.append(f"norm={p.normalize_method}")
suffix = ", ".join(suffix_parts)
title = f"combined_signals|{suffix}"
dst = create_image(title, data)
if p.orientation == SignalsToImageOrientation.ROWS:
dst.xlabel = src_list[0].ylabel
else:
dst.ylabel = src_list[0].ylabel
dst.zlabel = src_list[0].ylabel
dst.zunit = src_list[0].yunit
return dst
|