Skip to contents

Getter for data

Usage

seasonder_getSeaSondeRCS_data(seasonder_cs_object)

Arguments

seasonder_cs_object

SeaSondeRCS object

Value

A list containing the data matrices for the SeaSondeRCS object. If the data is not set, it initializes the data structure with the number of range and Doppler cells.

Examples

# Create a minimal SeaSondeRCS object
cs_obj <- structure(list(data = list(a = 1, b = 2)), class = "SeaSondeRCS")
data_list <- seasonder_getSeaSondeRCS_data(cs_obj)
print(data_list)
#> $a
#> [1] 1
#> 
#> $b
#> [1] 2
#>