Jump to content

Run Duration Signal to Equivalent Condition


Recommended Posts

  • Super Seeqer

Another interesting question through the support portal this morning. The user has a signal where each discrete point represents the run length recorded at the end of the run. They would like to translate this signal into a condition so it can be used for further analysis. 

The original signal looks a bit like this 

image.png

 To create the matching condition we need to use a transform and the ToCapsules() function

$Signal.toCapsules(                           //for each sample in the signal create a capsule
    $sample ->                                //create a variable name of your choice to reference each indivudal sample in your signal
       capsule(                               //open the capsule 
           $sample.key()-$sample.value(),     //Capsule Start definition (Key = timestamp of the sample  - value of the sample) 
           $sample.key()                      //Capsule End definition (timestamp of the sample)
                   ),5d)                      //Maximum length of any given capsule in the condition

 

image.png

 

  • Like 2
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...