Currently I'm still using LV 2009 so I hope the suggestet feature is not already implemented in the current version of LV 😉
******
I'm missing array functions for rotating and flipping 2D arrays. For images (NI-Vision toolkit) similar functions are available.
Of course I can program each function manually but low level functions would be really nice.
Let's make an example. The 3x3 input array is:
1 2 3
4 5 6
7 8 9
transposing (the only function that is already implemented) deliveres:
1 4 7
2 5 8
3 6 9
90° rotation should deliver:
3 6 9
2 5 8
1 4 7
horizontal flipping should deliver:
3 2 1
6 5 4
9 4 7
vertical flipping should deliver:
7 8 9
4 5 6
1 2 3
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.