I have created a compose function which return a parameter whic contains multivector values. Is it possible to extract a parameter with multivector value in hypergraph ? I know that single vector or scalar values it works. but multivector it fails.
hi @Sashi,
In Templex notation (the one used in most HyperWorks clients), you should be able to extract a specific vector using square brackets and zero-based indexing. I.e., you can extract the first value using [0], second value with [1], and so on.
So, you can call the custom function several times, extracting different elements each time.
Rafael
Hello,
Thanks for response. You mean even in hypergraph ? Here i have example of function called TranformationMatrix_Sled_Z. Which returns 3 variables. So I can use here [0]=TranformationMatrix_Sled_Z(………………..) ?
Thanks
Hi @Sashi,
You can do something like:
TranformationMatrix_Sled_Z(………………..)[0] for the 1st value
TranformationMatrix_Sled_Z(………………..)[1] for 2nd value
TranformationMatrix_Sled_Z(………………..)[2] for 3rd value