Is there a better way to create a 1D array with n number of elements in LabVIEW?
问题 Here is what I did, anyone have a better way of doing it? Do they have built-in function to do this? I just started using LabVIEW might have overlooked. Like in MATLAB its just: x = (0:10-1) and in Python: x = range(10) 回答1: The easiest way to create a range, is to do as you've done - but wire the indexing terminal directly and dropping the shift register. There is no built-in way to do this. The only potential gain of that would be to use slightly less space on the diagram. Edit: As Yair