Hello,
Since I’m working with trees I want to add ties (.0) to some elements of a list. I wanted to do it inside an omloop so I could make iterations.
For example, If I had a lis of pulses ((5 4 5 6) (4 3 6 5) (4 5 5 3)) and I wanted it to became ((5 4 5 6) (4.0 3 6 5) (4.0 5 5 3)), what would be the best way to do it? I couldn’t find a function that does this kind of mergging: adding .0 to a regular number or transforming a regular number into a float one.
Thanks in advance!
Alex