visual3d:documentation:pipeline:expressions:example_using_the_amp_operator
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
visual3d:documentation:pipeline:expressions:example_using_the_amp_operator [2024/07/17 15:42] – removed sgranger | visual3d:documentation:pipeline:expressions:example_using_the_amp_operator [2024/07/17 15:45] (current) – created sgranger | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Example using the AMP Operator ====== | ||
+ | |||
+ | ==== Contents ==== | ||
+ | |||
+ | |||
+ | |||
+ | * [[# | ||
+ | * [[# | ||
+ | * [[# | ||
+ | * [[# | ||
+ | |||
+ | |||
+ | ==== The Ampersand Operator ==== | ||
+ | |||
+ | For first time users of Visual3D' | ||
+ | |||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | |||
+ | The ampersand (&) is used in pipeline commands to concatenate strings together, and is a separator for the parser to find pieces that need to be parsed separately. To get the most out of this tutorial, it is recommended that you run the commands in Visual3D alongside reading the text descriptions, | ||
+ | |||
+ | ==== Example 1: Jane Elizabeth Doe ==== | ||
+ | |||
+ | Let there be a Visual3D workspace in which we have three parameters: FIRST_NAME, MIDDLE_NAME and LAST_NAME. Let us set each of these parameter values to be JANE, ELIZABETH and DOE, respectively: | ||
+ | |||
+ | < | ||
+ | Select_Active_File | ||
+ | !/ | ||
+ | ! /QUERY= | ||
+ | ! / | ||
+ | ; | ||
+ | |||
+ | Set_Pipeline_Parameter | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | |||
+ | Set_Pipeline_Parameter | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | |||
+ | Set_Pipeline_Parameter | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | Say we want to create a new signal with the value JANE ELIZABETH DOE. We start by opening the pipeline command Evaluate_Expression: | ||
+ | |||
+ | < | ||
+ | Evaluate_Expression | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | The output for running this command is **" | ||
+ | |||
+ | Let's first clarify what the "::" | ||
+ | |||
+ | < | ||
+ | Evaluate_Expression | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | The expression evaluates to FIRST_NAME, when what we wanted was JANE. Now if we add the "::" | ||
+ | |||
+ | < | ||
+ | Evaluate_Expression | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | This evaluates to JANE. This tells us that the "::" | ||
+ | |||
+ | Recall earlier in this example, when the **" | ||
+ | |||
+ | The & operator acts as " | ||
+ | |||
+ | < | ||
+ | Evaluate_Expression | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | Gives the result: JANEELIZABETHDOE. If you wanted to add spaces to this expression, you would use: | ||
+ | |||
+ | < | ||
+ | Evaluate_Expression | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | Which now evaluates to JANE ELIZABETH DOE. | ||
+ | |||
+ | ==== Example 2: Jane and John Doe ==== | ||
+ | |||
+ | Say we want to compare two string variables A and B: | ||
+ | |||
+ | < | ||
+ | Select_Active_File | ||
+ | / | ||
+ | ! /QUERY= | ||
+ | ! / | ||
+ | ; | ||
+ | |||
+ | Set_Pipeline_Parameter | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | |||
+ | Set_Pipeline_Parameter | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | |||
+ | Evaluate_Expression | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | This expression successfully evaluates (meaning it gives no errors), but does not produce the correct result. As you can see in the image below, the expression explicitly evaluates (::A=::B) to a value of 0. It does not actually read in the variables that we want to compare. | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Let's add some " | ||
+ | |||
+ | < | ||
+ | Evaluate_Expression | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | This evaluates the expression jane = john as 1 or True...hmmm. Practically speaking, we know this is not the case. This has occured because the Set_Pipeline_Parameter function does not read the " " we assigned to these variables earlier. So to evaluate if these strings match, we have to add them back in: | ||
+ | |||
+ | < | ||
+ | Evaluate_Expression | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | This evaluates the statement jane = john to 0 or False. Let's test to see if jane = jane is true: | ||
+ | |||
+ | < | ||
+ | Evaluate_Expression | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | And voila, there you have it. | ||
+ | |||
+ | ==== Example 3: Jane and John go to the Market ==== | ||
+ | |||
+ | Let’s say Jane and John have gone to a fruit stand at a local farmer’s market. Jane has purchased 33 apples and John has purchased 24 oranges. These values are stored in the DERIVED signal type under the folder MARKET as APPLES and ORANGES. | ||
+ | |||
+ | Let’s say you wanted to iterate through the market folder to find the total units of fruit that Jane and John purchased. You could in this instance, simply call an evaluate expression for both and sum the totals. But if you have 5 types of fruit, or 20, it would be easier to calculate this parameter in a for loop. | ||
+ | |||
+ | We start by setting all files to active and setting our total count to 0: | ||
+ | |||
+ | < | ||
+ | Select_Active_File | ||
+ | / | ||
+ | ! /QUERY= | ||
+ | ! / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | Evaluate_Expression | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | Because in this case the data we are dealing with is a variable within the workspace, not a pipeline parameter, we have to access it differently. To simply access the number of oranges we could use: | ||
+ | |||
+ | < | ||
+ | Evaluate_Expression | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | However, if we wanted to loop through these files, we again need to use the & operator. In the example below, the iteration parameter name is FRUIT and there are two iteration parameter items, APPLES and ORANGES. | ||
+ | |||
+ | < | ||
+ | For_Each | ||
+ | / | ||
+ | ! / | ||
+ | / | ||
+ | ; | ||
+ | |||
+ | Evaluate_Expression | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | |||
+ | End_For_Each | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | Executing this example will cause the **“variable was not created because there were no Results”** error. This is because of the way we accessed the FRUIT iteration parameter. Because FRUIT is an iteration parameter, we need to access it as ::FRUIT to get the values of APPLES and ORANGES. However, because :: | ||
+ | |||
+ | < | ||
+ | For_Each | ||
+ | / | ||
+ | !/ | ||
+ | /ITEMS= APPLES + ORANGES | ||
+ | ; | ||
+ | |||
+ | Evaluate_Expression | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | |||
+ | End_For_Each | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | This will correctly evaluate TOTAL to 57 fruits. | ||
+ | |||
+ | |||
visual3d/documentation/pipeline/expressions/example_using_the_amp_operator.1721230937.txt.gz · Last modified: 2024/07/17 15:42 by sgranger