You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem:
If a variable is scanned in a dataset, it's value can not be represented with a single value.
If you want to search for datasets, you expect to find it if the scan range did include it.
Way to a solution:
followup on #924 and if a value is an array, then interpret it in the search as min/max.
(pseudo-code) Example search for T = 100
search ( T =100 or
if T is array then
if T[0] < 100 and T[1]> 100
)
The text was updated successfully, but these errors were encountered:
The problem:
If a variable is scanned in a dataset, it's value can not be represented with a single value.
If you want to search for datasets, you expect to find it if the scan range did include it.
Way to a solution:
followup on #924 and if a value is an array, then interpret it in the search as min/max.
(pseudo-code) Example search for T = 100
The text was updated successfully, but these errors were encountered: