Hello,
I would like to improve my VI. Its something like AB subjective assesment of sound quality. The issue is, that the combination od stimulis must be prepaired as pairs. I would like to code the combinatory in app itself. So the point is to make pair combination of input paths or strings (array) and that combination is without repetition. Mathematicaly its for n files n!/2!*(n-2)!. I started programming that in LV, but it was too complex, more than the main VI. I´ve been doing that for 2 hours and finally I did not accidentaly save it. So now I´m quite upset. But anyway, that code was rubbish. Do you have any idea how to solve that?
Thank you very much!
已解决! 转到解答。
This should work for combinations of two things. This can be extended to solve more than two with recursion. This could be written to run faster, as written there are many array copies being made.
Hello Kulovy,
I post a working example that might should solve your problem. Please reshape it to fit your application.
Regards, TRSns
Hello TRSns,
thank you for giving me this idea! It took me quite long time to manage how to do it my way. So here is the result. You can see it´s nothing simple, but maybe it´s not the best way to do it. I know that in sequence languages it would be 5 lines of code or so 😄
It would make much more sense to attach a VI or snippet. We cannot debug and judge an image.
Ouch I did´t know thats something like snippets in LV, so here it is:
Hi,
if you bundled the input values in stead of building a string from them, it would be a lot easier to remove invalid array fields. You would simply check which array fileds have a cluster with NAN value, and remove them (not use them). At the same time you could build a 1-D array with a while loop and shift register, from the clusters that do not have NAN values.
Hope that helps, RavenBlack (aka TRSns)